grafana/pkg/build/wire
Kyle Brandt a738cb42d8
Prometheus: Update dependency to v0.52.0 (#87809)
* Prometheus: Update dependency to v0.52.0

* go work sync

* fix panics in tests

* go work sync

* prometheus v0.52.0

* handle errors

* Update pkg/services/ngalert/sender/sender_test.go

Co-authored-by: Santiago <santiagohernandez.1997@gmail.com>

* Update pkg/services/ngalert/sender/sender_test.go

Co-authored-by: Santiago <santiagohernandez.1997@gmail.com>

---------

Co-authored-by: Santiago <santiagohernandez.1997@gmail.com>
Co-authored-by: ismail simsek <ismailsimsek09@gmail.com>
2024-05-28 15:22:20 +02:00
..
_tutorial Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
cmd/wire Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
docs Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
internal Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
AUTHORS Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
CODE_OF_CONDUCT.md Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
CONTRIBUTING.md Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
CONTRIBUTORS Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
go.mod Prometheus: Update dependency to v0.52.0 (#87809) 2024-05-28 15:22:20 +02:00
go.sum Prometheus: Update dependency to v0.52.0 (#87809) 2024-05-28 15:22:20 +02:00
LICENSE Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
README.md Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00
wire.go Chore: Vendor wire into pkg/build (#84637) 2024-03-25 11:23:27 +01:00

Wire: Automated Initialization in Go

Build Status godoc Coverage

Wire is a code generation tool that automates connecting components using dependency injection. Dependencies between components are represented in Wire as function parameters, encouraging explicit initialization instead of global variables. Because Wire operates without runtime state or reflection, code written to be used with Wire is useful even for hand-written initialization.

For an overview, see the introductory blog post.

Installing

Install Wire by running:

go install github.com/google/wire/cmd/wire@latest

and ensuring that $GOPATH/bin is added to your $PATH.

Documentation

Project status

As of version v0.3.0, Wire is beta and is considered feature complete. It works well for the tasks it was designed to perform, and we prefer to keep it as simple as possible.

We'll not be accepting new features at this time, but will gladly accept bug reports and fixes.

Community

For questions, please use GitHub Discussions.

This project is covered by the Go Code of Conduct.