a8m / wire

Compile-time Dependency Injection for Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 get github.com/google/wire/cmd/wire

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

Documentation

Project status

As of version v0.3.0, Wire is beta. Throughout the beta period, we encourage you to use Wire and provide feedback. We will focus on improving usability and fixing bugs before the 1.0 release. We do not intend to introduce any breaking changes unless there is a strong reason to do so.

Community

You can contact us on the go-cloud mailing list.

This project is covered by the Go Code of Conduct.

About

Compile-time Dependency Injection for Go

License:Apache License 2.0


Languages

Language:Go 95.2%Language:Shell 4.8%