feat(app): Adds abra app move command

This commit is contained in:
2025-08-18 14:28:27 +02:00
parent 5cf6048ecb
commit d2c8aa5659
5 changed files with 310 additions and 4 deletions

View File

@ -7,7 +7,7 @@ import (
"github.com/docker/docker/client"
)
func StoreSecret(cl *client.Client, secretName, secretValue, server string) error {
func StoreSecret(cl *client.Client, secretName, secretValue string) error {
ann := swarm.Annotations{Name: secretName}
spec := swarm.SecretSpec{Annotations: ann, Data: []byte(secretValue)}