9 lines
200 B
Go
9 lines
200 B
Go
package rpc
|
|
|
|
// TranslateGet describes the param translate:get structure
|
|
type TranslateGet struct {
|
|
abstractParams
|
|
Key string `json:"key" msgpack:"key"`
|
|
I18n string `json:"i18n" msgpack:"i18n"`
|
|
}
|