mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
11 lines
163 B
Go
11 lines
163 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
)
|
|
|
|
func (cli *Client) DeployCaddy(ctx context.Context, image string) error {
|
|
return errors.New("not implemented")
|
|
}
|