mirror of
https://github.com/therootcompany/telebit.git
synced 2025-12-23 22:08:47 +00:00
11 lines
190 B
Go
11 lines
190 B
Go
package mplexer
|
|
|
|
import (
|
|
"git.coolaj86.com/coolaj86/go-telebitd/mplexer/packer"
|
|
)
|
|
|
|
type SortingHat interface {
|
|
LookupTarget(*packer.Addr) (*packer.Conn, error)
|
|
Authz() (string, error)
|
|
}
|