refactor model names

This commit is contained in:
2023-04-17 19:50:47 -07:00
parent 6b3113f302
commit 9a3268eec5
3 changed files with 129 additions and 167 deletions

9
client/client.go Normal file
View File

@@ -0,0 +1,9 @@
package client
type Client struct {
apiKey string
}
func New(apiKey string) Client {
return Client{apiKey: apiKey}
}