mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
10 lines
134 B
Go
10 lines
134 B
Go
|
|
package main
|
||
|
|
|
||
|
|
type theme string
|
||
|
|
|
||
|
|
const (
|
||
|
|
themeDark theme = "dark"
|
||
|
|
themeLight = "light"
|
||
|
|
themeUnknown = "unknown"
|
||
|
|
)
|