Files
m5app/internal/iotype/iotype.go
2023-07-31 18:30:43 +02:00

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