zitadel/internal/repository/usergrant/aggregate.go

15 lines
194 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
}