13 lines
219 B
Go
13 lines
219 B
Go
|
|
package pluginheart
|
||
|
|
|
||
|
|
type HeartInput struct {
|
||
|
|
API string `json:"api"` // 当前服务端的 api 地址
|
||
|
|
|
||
|
|
PID int `json:"pid"` // 免填
|
||
|
|
Port int `json:"port"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type ConsoleInput struct {
|
||
|
|
Msg string `json:"msg"`
|
||
|
|
}
|