1
0
Fork 0
mirror of synced 2024-07-01 12:40:34 +12:00

Updated Go services

This commit is contained in:
Eldad Fux 2020-01-29 07:08:39 +02:00
parent 5478dcd934
commit fe0ca71c5d
7 changed files with 8 additions and 8 deletions

View file

@ -9,7 +9,7 @@ type Avatars struct {
client Client client Client
} }
func NewAvatars(clt *Client) *Avatars { func NewAvatars(clt Client) Avatars {
service := Avatars{ service := Avatars{
client: clt, client: clt,
} }

View file

@ -9,7 +9,7 @@ type Database struct {
client Client client Client
} }
func NewDatabase(clt *Client) *Database { func NewDatabase(clt Client) Database {
service := Database{ service := Database{
client: clt, client: clt,
} }

View file

@ -8,7 +8,7 @@ type Locale struct {
client Client client Client
} }
func NewLocale(clt *Client) *Locale { func NewLocale(clt Client) Locale {
service := Locale{ service := Locale{
client: clt, client: clt,
} }

View file

@ -9,7 +9,7 @@ type Storage struct {
client Client client Client
} }
func NewStorage(clt *Client) *Storage { func NewStorage(clt Client) Storage {
service := Storage{ service := Storage{
client: clt, client: clt,
} }

View file

@ -9,7 +9,7 @@ type Teams struct {
client Client client Client
} }
func NewTeams(clt *Client) *Teams { func NewTeams(clt Client) Teams {
service := Teams{ service := Teams{
client: clt, client: clt,
} }

View file

@ -9,7 +9,7 @@ type Users struct {
client Client client Client
} }
func NewUsers(clt *Client) *Users { func NewUsers(clt Client) Users {
service := Users{ service := Users{
client: clt, client: clt,
} }

4
composer.lock generated
View file

@ -1526,7 +1526,7 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/appwrite/sdk-generator", "url": "https://github.com/appwrite/sdk-generator",
"reference": "cc85b5b82e9c91b57f45e61d15c9abaf71749436" "reference": "61756346867a1560b790c3a8421a05dfa6fbd421"
}, },
"require": { "require": {
"ext-curl": "*", "ext-curl": "*",
@ -1556,7 +1556,7 @@
} }
], ],
"description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms", "description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms",
"time": "2020-01-28T23:13:19+00:00" "time": "2020-01-29T05:06:48+00:00"
}, },
{ {
"name": "doctrine/instantiator", "name": "doctrine/instantiator",