UI part of the project

This commit is contained in:
Ertan Caliskan
2024-03-24 21:11:32 +01:00
parent 9a46865055
commit 1e0e7ed738
45 changed files with 3332 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package main
type LoginUser struct {
UserName string
password string
Token string
LoggedIn bool
}
type LoginService struct{}
func (g *LoginService) Login(userName string, password string) LoginUser {
return LoginUser{password: password, UserName: userName, Token: "test", LoggedIn: true}
}