8 lines
97 B
Go
8 lines
97 B
Go
|
package selection
|
||
|
|
||
|
type CalendarEventType string
|
||
|
|
||
|
const (
|
||
|
AllEvents CalendarEventType = "all"
|
||
|
)
|