13 lines
173 B
Go
13 lines
173 B
Go
package domains
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
const DomainNameDeconnector = "deconnector"
|
|
|
|
type Deconnector interface {
|
|
Handle(ctx context.Context, clientConn net.Conn)
|
|
}
|