mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-18 21:14:37 +03:00
13 lines
147 B
Go
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)
|
|
}
|