mirror of
https://github.com/harness/drone.git
synced 2025-05-05 04:11:53 +08:00

* initial work on create repository * create repository as single method call using client stream * resources handler and files * minor fix for wire dep graph
13 lines
225 B
Go
13 lines
225 B
Go
package gitrpc
|
|
|
|
import "github.com/google/wire"
|
|
|
|
// WireSet provides a wire set for this package.
|
|
var WireSet = wire.NewSet(
|
|
ProvideClient,
|
|
)
|
|
|
|
func ProvideClient() (Interface, error) {
|
|
return InitClient("localhost:5001")
|
|
}
|