14 lines
299 B
Go
14 lines
299 B
Go
package iotype
|
|
|
|
type GetHealthRequest struct{}
|
|
type GetHealthResult struct{}
|
|
|
|
type CreateSessionRequest struct{
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
}
|
|
type CreateSessionResult struct{
|
|
Token string `json:"token"`
|
|
Expire int64 `json:"expire"`
|
|
}
|