mirror of
https://github.com/lorsanstand/HomeOps-Hub.git
synced 2026-06-21 17:35:16 +03:00
13 lines
230 B
Go
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)
|
|
}
|