initial commit

This commit is contained in:
ginuerzh
2021-03-30 22:34:01 +08:00
commit b74e4cc8a4
23 changed files with 925 additions and 0 deletions

12
server/server.go Normal file
View File

@ -0,0 +1,12 @@
package server
import (
"github.com/go-gost/gost/server/handler"
"github.com/go-gost/gost/server/listener"
)
// Server is a proxy server.
type Server struct {
Handler handler.Handler
Listener listener.Listener
}