mirror of
https://github.com/nadoo/glider.git
synced 2025-02-23 01:15:41 +08:00
13 lines
399 B
Go
13 lines
399 B
Go
package main
|
|
|
|
import (
|
|
// comment out the services you don't need to make the compiled binary smaller.
|
|
// _ "github.com/nadoo/glider/service/xxx"
|
|
_ "github.com/nadoo/glider/service/dhcpd"
|
|
|
|
// 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"
|
|
_ "github.com/nadoo/glider/proxy/unix"
|
|
)
|