mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-20 15:10:08 +08:00
11 lines
127 B
Go
11 lines
127 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"runtime"
|
|
)
|
|
|
|
func Launcher() {
|
|
log.Fatalf("launcher is not for your platform", runtime.GOOS)
|
|
}
|