1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Starting a git implementation

This commit is contained in:
Chris Cummer 2018-03-30 22:45:54 -07:00 committed by Chris Cummer
parent 7b5d06c670
commit d3cd19fd8f
2 changed files with 15 additions and 0 deletions

15
git/client.go Normal file
View File

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

0
git/widget.go Normal file
View File