mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 19:19:19 +00:00
87a2e18a4d
* fix: migration, key rotation and org event reducing * fix oidc app * pointer receiver name
15 lines
191 B
Go
15 lines
191 B
Go
package keypair
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
)
|
|
|
|
const (
|
|
AggregateType = "key_pair"
|
|
AggregateVersion = "v1"
|
|
)
|
|
|
|
type Aggregate struct {
|
|
eventstore.Aggregate
|
|
}
|