1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-07-05 16:38:17 -04:00

14 lines
168 B
Go
Raw Normal View History

2021-06-28 21:43:05 +01:00
package main
import (
"github.com/v2fly/v2ray-core/v4/main/v2binding"
"time"
)
func main() {
v2binding.StartAPIInstance(".")
for {
time.Sleep(time.Minute)
}
}