mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 19:01:45 +00:00
15 lines
197 B
Go
15 lines
197 B
Go
![]() |
package usergrant
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
AggregateType = "usergrant"
|
||
|
AggregateVersion = "v1"
|
||
|
)
|
||
|
|
||
|
type Aggregate struct {
|
||
|
eventstore.Aggregate
|
||
|
}
|