Files
nekoray/go/cmd/updater/launcher.go
2023-06-05 14:34:15 +09:00

13 lines
147 B
Go

//go:build !linux
package main
import (
"log"
"runtime"
)
func Launcher() {
log.Fatalln("launcher is not for your platform", runtime.GOOS)
}