mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +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
|
||
|
)
|