mirror of
https://github.com/therootcompany/telebit.git
synced 2025-12-24 06:18:46 +00:00
11 lines
130 B
Go
11 lines
130 B
Go
package mplexer
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
type SortingHat interface {
|
|
LookupTarget(*Addr) (net.Conn, error)
|
|
Authz() (string, error)
|
|
}
|