Commit from GitHub Actions (Generate Clients & Examples)

This commit is contained in:
asim
2021-11-02 14:55:41 +00:00
parent ad9b51b20e
commit d8fe0a59a9
9 changed files with 7 additions and 15 deletions

View File

@@ -35,7 +35,6 @@ import (
"github.com/micro/services/clients/go/sentiment"
"github.com/micro/services/clients/go/sms"
"github.com/micro/services/clients/go/stock"
"github.com/micro/services/clients/go/stream"
"github.com/micro/services/clients/go/sunnah"
"github.com/micro/services/clients/go/thumbnail"
"github.com/micro/services/clients/go/time"
@@ -85,7 +84,6 @@ func NewClient(token string) *Client {
SentimentService: sentiment.NewSentimentService(token),
SmsService: sms.NewSmsService(token),
StockService: stock.NewStockService(token),
StreamService: stream.NewStreamService(token),
SunnahService: sunnah.NewSunnahService(token),
ThumbnailService: thumbnail.NewThumbnailService(token),
TimeService: time.NewTimeService(token),
@@ -135,7 +133,6 @@ type Client struct {
SentimentService *sentiment.SentimentService
SmsService *sms.SmsService
StockService *stock.StockService
StreamService *stream.StreamService
SunnahService *sunnah.SunnahService
ThumbnailService *thumbnail.ThumbnailService
TimeService *time.TimeService