mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
15 lines
169 B
Go
15 lines
169 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/main/v2binding"
|
|
)
|
|
|
|
func main() {
|
|
v2binding.StartAPIInstance(".")
|
|
for {
|
|
time.Sleep(time.Minute)
|
|
}
|
|
}
|