mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 05:57:32 +00:00
10 lines
183 B
Go
10 lines
183 B
Go
package restrictions
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
)
|
|
|
|
func init() {
|
|
eventstore.RegisterFilterEventMapper(AggregateType, SetEventType, SetEventMapper)
|
|
}
|