Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2021-11-26 12:34:00 +00:00
parent 8e682f8359
commit 87630a4bfd
19 changed files with 838 additions and 748 deletions

3
m3o.go
View File

@@ -26,6 +26,7 @@ import (
"go.m3o.com/location"
"go.m3o.com/mq"
"go.m3o.com/news"
"go.m3o.com/nft"
"go.m3o.com/notes"
"go.m3o.com/otp"
"go.m3o.com/postcode"
@@ -79,6 +80,7 @@ func NewClient(token string) *Client {
LocationService: location.NewLocationService(token),
MqService: mq.NewMqService(token),
NewsService: news.NewNewsService(token),
NftService: nft.NewNftService(token),
NotesService: notes.NewNotesService(token),
OtpService: otp.NewOtpService(token),
PostcodeService: postcode.NewPostcodeService(token),
@@ -132,6 +134,7 @@ type Client struct {
LocationService *location.LocationService
MqService *mq.MqService
NewsService *news.NewsService
NftService *nft.NftService
NotesService *notes.NotesService
OtpService *otp.OtpService
PostcodeService *postcode.PostcodeService