Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2022-02-20 21:54:04 +00:00
parent a6dc177797
commit 0d60904f8a
31 changed files with 1649 additions and 1461 deletions

6
m3o.go
View File

@@ -31,7 +31,7 @@ import (
"go.m3o.com/joke"
"go.m3o.com/lists"
"go.m3o.com/location"
"go.m3o.com/meme"
"go.m3o.com/memegen"
"go.m3o.com/minecraft"
"go.m3o.com/movie"
"go.m3o.com/mq"
@@ -100,7 +100,7 @@ func NewClient(token string) *Client {
JokeService: joke.NewJokeService(token),
ListsService: lists.NewListsService(token),
LocationService: location.NewLocationService(token),
MemeService: meme.NewMemeService(token),
MemegenService: memegen.NewMemegenService(token),
MinecraftService: minecraft.NewMinecraftService(token),
MovieService: movie.NewMovieService(token),
MqService: mq.NewMqService(token),
@@ -169,7 +169,7 @@ type Client struct {
JokeService *joke.JokeService
ListsService *lists.ListsService
LocationService *location.LocationService
MemeService *meme.MemeService
MemegenService *memegen.MemegenService
MinecraftService *minecraft.MinecraftService
MovieService *movie.MovieService
MqService *mq.MqService