base creation

This commit is contained in:
m
2026-09-03 20:38:47 +02:00
parent 32a61e6a64
commit 80dd164fde
12 changed files with 187 additions and 18 deletions
+11
View File
@@ -0,0 +1,11 @@
package entities
type User struct {
Username string
}
func NewUser(username string) (error, *User) {
return nil, &User{
Username: username,
}
}