mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 16:15:49 -06:00
8 lines
105 B
Go
8 lines
105 B
Go
package server
|
|
|
|
type Server interface {
|
|
Run() error
|
|
Close() error
|
|
BindAddr() string
|
|
BindPort() int
|
|
}
|