Files
HomeOps-Hub/agent/internal/domain/command.go
T
2026-06-17 16:52:30 +03:00

13 lines
230 B
Go

package domain
import (
"context"
domainHub "github.com/lorsanstand/HomeOps-Hub/shared/domain"
)
type Command struct {
domainHub.CapabilityCommand
Execute func(ctx context.Context, args map[string]string) (string, error)
}