2020-09-27 19:50:21 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
// comment out the services you don't need to make the compiled binary smaller.
|
2022-02-23 22:20:06 +08:00
|
|
|
_ "github.com/nadoo/glider/service/dhcpd"
|
2020-09-27 19:50:21 +08:00
|
|
|
|
|
|
|
// comment out the protocols you don't need to make the compiled binary smaller.
|
|
|
|
_ "github.com/nadoo/glider/proxy/redir"
|
2021-07-17 22:36:42 +08:00
|
|
|
_ "github.com/nadoo/glider/proxy/tproxy"
|
2020-09-27 19:50:21 +08:00
|
|
|
_ "github.com/nadoo/glider/proxy/unix"
|
2022-04-05 15:22:12 +08:00
|
|
|
_ "github.com/nadoo/glider/proxy/vsock"
|
2020-09-27 19:50:21 +08:00
|
|
|
)
|