mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-04 01:05:16 +00:00
15 lines
196 B
Go
15 lines
196 B
Go
package usergrant
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
)
|
|
|
|
const (
|
|
AggregateType = "key_pair"
|
|
AggregateVersion = "v1"
|
|
)
|
|
|
|
type Aggregate struct {
|
|
eventstore.Aggregate
|
|
}
|