Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions modal-go/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ type Client struct {
Apps AppService
CloudBucketMounts CloudBucketMountService
Cls ClsService
Dicts DictService
Functions FunctionService
FunctionCalls FunctionCallService
Images ImageService
Expand Down Expand Up @@ -187,6 +188,7 @@ func NewClientWithOptions(params *ClientParams) (*Client, error) {
c.Apps = &appServiceImpl{client: c}
c.CloudBucketMounts = &cloudBucketMountServiceImpl{client: c}
c.Cls = &clsServiceImpl{client: c}
c.Dicts = &dictServiceImpl{client: c}
c.Functions = &functionServiceImpl{client: c}
c.FunctionCalls = &functionCallServiceImpl{client: c}
c.Images = &imageServiceImpl{client: c}
Expand Down
Loading