mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
20 lines
301 B
Go
20 lines
301 B
Go
package event
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/fatedier/frp/pkg/msg"
|
|
)
|
|
|
|
var ErrPayloadType = errors.New("error payload type")
|
|
|
|
type Handler func(payload interface{}) error
|
|
|
|
type StartProxyPayload struct {
|
|
NewProxyMsg *msg.NewProxy
|
|
}
|
|
|
|
type CloseProxyPayload struct {
|
|
CloseProxyMsg *msg.CloseProxy
|
|
}
|