mirror of
https://github.com/fatedier/frp
synced 2025-10-05 20:47:52 +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
|
|
}
|