server added

This commit is contained in:
2023-07-31 18:30:43 +02:00
parent dbbd2884ea
commit 2d7db4467a
66 changed files with 13251 additions and 105 deletions
+13
View File
@@ -0,0 +1,13 @@
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"`
}