feat: caddy deploy command and stub implementation

This commit is contained in:
Pavel Sviderski
2025-02-15 08:52:14 +10:00
parent c4398f9f06
commit 98db5ed440
4 changed files with 79 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package client
import (
"context"
"errors"
)
func (cli *Client) DeployCaddy(ctx context.Context, image string) error {
return errors.New("not implemented")
}