Files
nekoray/go/cmd/updater/launcher_windows.go
2022-11-21 09:42:17 +09:00

11 lines
127 B
Go

package main
import (
"log"
"runtime"
)
func Launcher() {
log.Fatalf("launcher is not for your platform", runtime.GOOS)
}