Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
domwong
2021-09-20 10:19:39 +00:00
parent 4319f7bf4c
commit 77810789ff
10 changed files with 113 additions and 5 deletions

View File

@@ -19,6 +19,7 @@ import (
"github.com/micro/services/clients/go/location"
"github.com/micro/services/clients/go/otp"
"github.com/micro/services/clients/go/postcode"
"github.com/micro/services/clients/go/qr"
"github.com/micro/services/clients/go/quran"
"github.com/micro/services/clients/go/routing"
"github.com/micro/services/clients/go/rss"
@@ -56,6 +57,7 @@ func NewClient(token string) *Client {
LocationService: location.NewLocationService(token),
OtpService: otp.NewOtpService(token),
PostcodeService: postcode.NewPostcodeService(token),
QrService: qr.NewQrService(token),
QuranService: quran.NewQuranService(token),
RoutingService: routing.NewRoutingService(token),
RssService: rss.NewRssService(token),
@@ -93,6 +95,7 @@ type Client struct {
LocationService *location.LocationService
OtpService *otp.OtpService
PostcodeService *postcode.PostcodeService
QrService *qr.QrService
QuranService *quran.QuranService
RoutingService *routing.RoutingService
RssService *rss.RssService