Fix linter issues

This commit is contained in:
2026-05-27 10:58:13 +03:00
parent 11a357ebc4
commit 024d5fd96c
13 changed files with 145 additions and 46 deletions

View File

@@ -1,11 +1,12 @@
package domains
import (
"context"
"net"
)
const DomainNameDeconnector = "deconnector"
type Deconnector interface {
Handle(clientConn net.Conn)
Handle(ctx context.Context, clientConn net.Conn)
}