Files
grosbeak/internal/types/constants.go
Matt Jadud f53639af2f Queueing, prepping to fetch
A lot more to go, but this is the core.

Need to think about how to test the queue handlers.
2025-11-30 21:29:30 -05:00

10 lines
183 B
Go

package types
type UpdateFrequency string
const (
UPDATE_DAILY UpdateFrequency = "DAILY"
UPDATE_WEEKLY UpdateFrequency = "WEEKLY"
UPDATE_MONTHLY UpdateFrequency = "MONTHLY"
)