项目作者: google

项目描述 :
Compile-time Dependency Injection for Go
高级语言: Go
项目地址: git://github.com/google/wire.git
创建时间: 2018-11-28T17:34:51Z
项目社区:https://github.com/google/wire

开源协议:Apache License 2.0

下载


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:

  1. 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.