A lot more to go, but this is the core. Need to think about how to test the queue handlers.
10 lines
183 B
Go
10 lines
183 B
Go
package types
|
|
|
|
type UpdateFrequency string
|
|
|
|
const (
|
|
UPDATE_DAILY UpdateFrequency = "DAILY"
|
|
UPDATE_WEEKLY UpdateFrequency = "WEEKLY"
|
|
UPDATE_MONTHLY UpdateFrequency = "MONTHLY"
|
|
)
|