add version and translate all pages

This commit is contained in:
m
2026-09-15 13:57:57 +02:00
parent 4659f3abc5
commit 339d55d92f
19 changed files with 205 additions and 70 deletions
+3 -3
View File
@@ -4,8 +4,8 @@ type User struct {
Username string
}
func NewUser(username string) (error, *User) {
return nil, &User{
func NewUser(username string) (*User, error) {
return &User{
Username: username,
}
}, nil
}