mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:07:32 +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
|
|
)
|