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