mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-10-28 17:42:14 +08:00
11 lines
115 B
Go
11 lines
115 B
Go
package core
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type Handler interface {
|
|
Handle(ctx context.Context, conn net.Conn)
|
|
}
|