Files
dsrpc/example/api/hello.go
2023-04-01 00:33:59 +02:00

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"`
}