Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2022-02-20 12:36:15 +00:00
parent 2f40c45092
commit facb2a9289
32 changed files with 1886 additions and 1414 deletions

3
m3o.go
View File

@@ -8,6 +8,7 @@ import (
"go.m3o.com/cache"
"go.m3o.com/carbon"
"go.m3o.com/chat"
"go.m3o.com/comments"
"go.m3o.com/contact"
"go.m3o.com/crypto"
"go.m3o.com/currency"
@@ -75,6 +76,7 @@ func NewClient(token string) *Client {
CacheService: cache.NewCacheService(token),
CarbonService: carbon.NewCarbonService(token),
ChatService: chat.NewChatService(token),
CommentsService: comments.NewCommentsService(token),
ContactService: contact.NewContactService(token),
CryptoService: crypto.NewCryptoService(token),
CurrencyService: currency.NewCurrencyService(token),
@@ -142,6 +144,7 @@ type Client struct {
CacheService *cache.CacheService
CarbonService *carbon.CarbonService
ChatService *chat.ChatService
CommentsService *comments.CommentsService
ContactService *contact.ContactService
CryptoService *crypto.CryptoService
CurrencyService *currency.CurrencyService