This commit is contained in:
Hüseyin
2026-06-16 09:07:10 +03:00
parent 2dfda9d553
commit bd08898bf1
91 changed files with 15477 additions and 11812 deletions

View File

@@ -1,13 +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}
}
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}
}