1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 18:36:10 -04:00
v2fly/main/v2binding/v2api/api.go

15 lines
169 B
Go
Raw Normal View History

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