19 lines
291 B
Go
19 lines
291 B
Go
/*
|
|
*
|
|
* Copyright 2022 Oleg Borodin <borodin@unix7.org>
|
|
*
|
|
*/
|
|
|
|
package api
|
|
|
|
const HelloMethod string = "hello"
|
|
|
|
type HelloParams struct {
|
|
Message string `msgpack:"message" json:"message"`
|
|
}
|
|
|
|
type HelloResult struct {
|
|
Message string `msgpack:"message" json:"message"`
|
|
}
|
|
|