gost/pkg/components/handler/handler.go
2021-10-26 21:07:46 +08:00

11 lines
109 B
Go

package handler
import (
"context"
"net"
)
type Handler interface {
Handle(context.Context, net.Conn)
}