mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
16 lines
181 B
Go
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
|
|
}
|