12 lines
198 B
Go
12 lines
198 B
Go
package types
|
|
|
|
type PingInput struct {
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type PingOutput struct {
|
|
Success bool `json:"success"`
|
|
Message string `json:"message"`
|
|
Echo string `json:"echo"`
|
|
}
|