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