mirror of https://github.com/dnomd343/XProxy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
392 B
20 lines
392 B
2 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"XProxy/cmd/network"
|
||
|
"fmt"
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
log.SetLevel(log.DebugLevel)
|
||
|
|
||
|
fmt.Println("xproxy start")
|
||
|
//common.CreateFolder("/tmp/test")
|
||
|
//fmt.Println(common.IsFileExist("/tmp/1.jpg"))
|
||
|
//fmt.Println(common.ListFiles("/xproxy/config", ".json"))
|
||
|
net = network.Config{
|
||
|
V4RouteTable: 12,
|
||
|
}
|
||
|
}
|