mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 14:57:28 +00:00
10 lines
161 B
Go
10 lines
161 B
Go
![]() |
package sink
|
||
|
|
||
|
//go:generate enumer -type Channel -trimprefix Channel -transform snake
|
||
|
type Channel int
|
||
|
|
||
|
const (
|
||
|
ChannelMilestone Channel = iota
|
||
|
ChannelQuota
|
||
|
)
|