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 }}
15
15
import (
16
16
"encoding/json"
17
17
"errors"
18
- "github.com/{{sdk .gitUserName }}/sdk-for-go/client "
18
+ "github.com/{{sdk .gitUserName }}/sdk-for-go/appwrite "
19
19
{% if requireModelsPkg %}
20
20
"github.com/{{sdk .gitUserName }}/sdk-for-go/models"
21
21
{% endif %}
@@ -27,10 +27,10 @@ import (
27
27
28
28
{{ ((service .name | caseUcfirst ) ~ " service" ) | godocComment }}
29
29
type {{ service .name | caseUcfirst }} struct {
30
- client client .Client
30
+ client appwrite .Client
31
31
}
32
32
33
- func New{{ service .name | caseUcfirst }}(clt client .Client) *{{ service .name | caseUcfirst }} {
33
+ func New{{ service .name | caseUcfirst }}(clt appwrite .Client) *{{ service .name | caseUcfirst }} {
34
34
return & {{ service .name | caseUcfirst }}{
35
35
client: clt,
36
36
}
You can’t perform that action at this time.
0 commit comments