12 lines
134 B
Go
12 lines
134 B
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type Handler interface {
|
|
Init(md Metadata) error
|
|
Handle(context.Context, net.Conn)
|
|
}
|