banniere legacy + base

This commit is contained in:
m
2026-09-10 07:09:19 +02:00
parent 8ff2339c8a
commit 77d2ea8356
12 changed files with 0 additions and 4 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,
}
}