mirror of
https://github.com/syumai/workers.git
synced 2025-03-10 17:29:11 +00:00
17 lines
197 B
Go
17 lines
197 B
Go
![]() |
package main
|
||
|
|
||
|
type Mode string
|
||
|
|
||
|
const (
|
||
|
ModeGo Mode = "go"
|
||
|
ModeTinygo Mode = "tinygo"
|
||
|
)
|
||
|
|
||
|
func (m Mode) IsValid() bool {
|
||
|
switch m {
|
||
|
case ModeGo, ModeTinygo:
|
||
|
return true
|
||
|
}
|
||
|
return false
|
||
|
}
|