mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
9 lines
105 B
Go
9 lines
105 B
Go
|
package server
|
||
|
|
||
|
type Server interface {
|
||
|
Run() error
|
||
|
Close() error
|
||
|
BindAddr() string
|
||
|
BindPort() int
|
||
|
}
|