zitadel/internal/repository/org/aggregate.go

19 lines
244 B
Go
Raw Normal View History

package org
import (
"github.com/caos/zitadel/internal/eventstore"
)
const (
orgEventTypePrefix = eventstore.EventType("org.")
)
const (
AggregateType = "org"
AggregateVersion = "v1"
)
type Aggregate struct {
eventstore.Aggregate
}