https://github.com/afthaab/wire-package-golang
This Repo consist of a simple go application written to understand Dependency injection though Wire Package
https://github.com/afthaab/wire-package-golang
dependency-injection wire
Last synced: about 1 month ago
JSON representation
This Repo consist of a simple go application written to understand Dependency injection though Wire Package
- Host: GitHub
- URL: https://github.com/afthaab/wire-package-golang
- Owner: Afthaab
- Created: 2023-06-01T19:46:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-01T19:56:25.000Z (about 3 years ago)
- Last Synced: 2025-11-29T18:26:25.966Z (7 months ago)
- Topics: dependency-injection, wire
- Language: Go
- Homepage: https://blog.logrocket.com/go-dependency-injection-wire/
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wire-Package-Golang
This Repo consist of a simple go application written to understand Dependency injection though Wire Package
## Wire Package
Wire is a code dependency tool that operates without runtime state or reflection. Code written to be used with Wire is useful even for handwritten initialization.
## Download the Wire Package
```
go get github.com/google/wire/cmd/wire
```
## Command to run the Wire Package
```
go run github.com/google/wire/cmd/wire
```
### Visit the below website for more information
```
https://blog.logrocket.com/go-dependency-injection-wire/
```