Files
zitadel/apps/api/internal/integration/sink/channel.go
2025-08-05 15:20:32 -07:00

10 lines
161 B
Go

package sink
//go:generate enumer -type Channel -trimprefix Channel -transform snake
type Channel int
const (
ChannelMilestone Channel = iota
ChannelQuota
)