mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
19 lines
247 B
Go
19 lines
247 B
Go
|
package org
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
iamEventTypePrefix = eventstore.EventType("org.")
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
AggregateType = "org"
|
||
|
AggregateVersion = "v1"
|
||
|
)
|
||
|
|
||
|
type Aggregate struct {
|
||
|
eventstore.Aggregate
|
||
|
}
|