Files
nekoray/updater/launcher_windows.go
2022-08-08 11:11:25 +08:00

11 lines
127 B
Go

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