Files
zitadel/apps/api/internal/repository/keypair/aggregate.go
2025-08-05 15:20:32 -07:00

15 lines
194 B
Go

package keypair
import (
"github.com/zitadel/zitadel/internal/eventstore"
)
const (
AggregateType = "key_pair"
AggregateVersion = "v1"
)
type Aggregate struct {
eventstore.Aggregate
}