diff --git a/git/client.go b/git/client.go new file mode 100644 index 00000000..3c7a7e71 --- /dev/null +++ b/git/client.go @@ -0,0 +1,15 @@ +package git + +import () + +type Client struct { + Repository string +} + +func NewClient() *Client { + client := Client{ + Repository: "./Documents/Lendesk/core-api", + } + + return &client +} diff --git a/git/widget.go b/git/widget.go new file mode 100644 index 00000000..e69de29b