mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
301 B
19 lines
301 B
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 |
|
}
|
|
|