mirror of
https://github.com/fatedier/frp.git
synced 2024-12-13 02:00:55 +01:00
9 lines
105 B
Go
9 lines
105 B
Go
package server
|
|
|
|
type Server interface {
|
|
Run() error
|
|
Close() error
|
|
BindAddr() string
|
|
BindPort() int
|
|
}
|