Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2021-12-11 08:24:45 +00:00
parent 1768e5a808
commit a411a0357f
20 changed files with 1003 additions and 846 deletions

3
m3o.go
View File

@@ -4,6 +4,7 @@ import (
"go.m3o.com/address"
"go.m3o.com/answer"
"go.m3o.com/app"
"go.m3o.com/avatar"
"go.m3o.com/cache"
"go.m3o.com/crypto"
"go.m3o.com/currency"
@@ -63,6 +64,7 @@ func NewClient(token string) *Client {
AddressService: address.NewAddressService(token),
AnswerService: answer.NewAnswerService(token),
AppService: app.NewAppService(token),
AvatarService: avatar.NewAvatarService(token),
CacheService: cache.NewCacheService(token),
CryptoService: crypto.NewCryptoService(token),
CurrencyService: currency.NewCurrencyService(token),
@@ -122,6 +124,7 @@ type Client struct {
AddressService *address.AddressService
AnswerService *answer.AnswerService
AppService *app.AppService
AvatarService *avatar.AvatarService
CacheService *cache.CacheService
CryptoService *crypto.CryptoService
CurrencyService *currency.CurrencyService