added AuthInfo struct

This commit is contained in:
Valmo Trindade
2024-08-19 03:33:57 -03:00
parent 89891ef652
commit ecfbbf7b4c

View File

@@ -25,3 +25,8 @@ type Message struct {
Message string `json:"uid"`
Sender string `json:"sender"`
}
type AuthInfo struct {
Username string `json:"username"`
Password string `json:"password"`
}