File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ package {{ service.name | caseLower }}
1515import (
1616 "encoding/json"
1717 "errors"
18- "github.com/{{sdk .gitUserName }}/sdk-for-go/client "
18+ "github.com/{{sdk .gitUserName }}/sdk-for-go/appwrite "
1919{% if requireModelsPkg %}
2020 "github.com/{{sdk .gitUserName }}/sdk-for-go/models"
2121{% endif %}
@@ -27,10 +27,10 @@ import (
2727
2828{{ ((service .name | caseUcfirst ) ~ " service" ) | godocComment }}
2929type {{ service .name | caseUcfirst }} struct {
30- client client .Client
30+ client appwrite .Client
3131}
3232
33- func New{{ service .name | caseUcfirst }}(clt client .Client) *{{ service .name | caseUcfirst }} {
33+ func New{{ service .name | caseUcfirst }}(clt appwrite .Client) *{{ service .name | caseUcfirst }} {
3434 return & {{ service .name | caseUcfirst }}{
3535 client: clt,
3636 }
You can’t perform that action at this time.
0 commit comments