1
0
mirror of https://github.com/fatedier/frp.git synced 2025-05-16 20:38:27 +00:00

9 lines
105 B
Go
Raw Normal View History

2021-06-18 16:48:36 +08:00
package server
type Server interface {
Run() error
Close() error
BindAddr() string
BindPort() int
}