1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/git/client.go
2018-03-31 14:01:09 -07:00

16 lines
181 B
Go

package git
import ()
type Client struct {
Repository string
}
func NewClient() *Client {
client := Client{
Repository: "./Documents/Lendesk/core-api",
}
return &client
}