Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2021-12-08 10:41:28 +00:00
parent e56ccf9c5a
commit 18f89d3897
20 changed files with 886 additions and 788 deletions

3
m3o.go
View File

@@ -23,6 +23,7 @@ import (
"go.m3o.com/id"
"go.m3o.com/image"
"go.m3o.com/ip"
"go.m3o.com/joke"
"go.m3o.com/location"
"go.m3o.com/movie"
"go.m3o.com/mq"
@@ -80,6 +81,7 @@ func NewClient(token string) *Client {
IdService: id.NewIdService(token),
ImageService: image.NewImageService(token),
IpService: ip.NewIpService(token),
JokeService: joke.NewJokeService(token),
LocationService: location.NewLocationService(token),
MovieService: movie.NewMovieService(token),
MqService: mq.NewMqService(token),
@@ -137,6 +139,7 @@ type Client struct {
IdService *id.IdService
ImageService *image.ImageService
IpService *ip.IpService
JokeService *joke.JokeService
LocationService *location.LocationService
MovieService *movie.MovieService
MqService *mq.MqService