mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 08:05:49 -06:00
19 lines
293 B
Go
19 lines
293 B
Go
package event
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/fatedier/frp/pkg/msg"
|
|
)
|
|
|
|
var ErrPayloadType = errors.New("error payload type")
|
|
|
|
type Handler func(payload any) error
|
|
|
|
type StartProxyPayload struct {
|
|
NewProxyMsg *msg.NewProxy
|
|
}
|
|
|
|
type CloseProxyPayload struct {
|
|
CloseProxyMsg *msg.CloseProxy
|
|
}
|