mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
21 lines
250 B
Go
21 lines
250 B
Go
|
package constant
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
type ProxyAdapter interface {
|
||
|
Writer() io.Writer
|
||
|
Reader() io.Reader
|
||
|
Close()
|
||
|
}
|
||
|
|
||
|
type ServerAdapter interface {
|
||
|
Addr() *Addr
|
||
|
ProxyAdapter
|
||
|
}
|
||
|
|
||
|
type Proxy interface {
|
||
|
Generator(addr *Addr) (ProxyAdapter, error)
|
||
|
}
|