2021-02-12 16:51:12 +01:00
|
|
|
package usergrant
|
|
|
|
|
|
|
|
import (
|
2021-02-23 15:13:04 +01:00
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
2021-02-12 16:51:12 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
AggregateType = "key_pair"
|
|
|
|
AggregateVersion = "v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Aggregate struct {
|
|
|
|
eventstore.Aggregate
|
|
|
|
}
|