glider/feature_linux.go

12 lines
355 B
Go
Raw Normal View History

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.
_ "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"
_ "github.com/nadoo/glider/proxy/tproxy"
2020-09-27 19:50:21 +08:00
_ "github.com/nadoo/glider/proxy/unix"
)