zitadel/internal/repository/usergrant/aggregate.go

26 lines
441 B
Go
Raw Normal View History

package usergrant
import (
"github.com/caos/zitadel/internal/eventstore"
)
const (
AggregateType = "usergrant"
AggregateVersion = "v1"
)
type Aggregate struct {
eventstore.Aggregate
}
func NewAggregate(id, resourceOwner string) *Aggregate {
return &Aggregate{
Aggregate: eventstore.Aggregate{
Typ: AggregateType,
Version: AggregateVersion,
ID: id,
ResourceOwner: resourceOwner,
},
}
}