mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
10 lines
167 B
Go
10 lines
167 B
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type commandProvider interface {
|
|
domainPolicyWriteModel(ctx context.Context, orgID string) (*PolicyDomainWriteModel, error)
|
|
}
|