1
0
mirror of https://github.com/fatedier/frp.git synced 2025-05-02 09:48:25 +00:00
2021-06-18 16:48:36 +08:00

9 lines
105 B
Go

package server
type Server interface {
Run() error
Close() error
BindAddr() string
BindPort() int
}