1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00

15 lines
169 B
Go
Raw Normal View History

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