create tests directory format

This commit is contained in:
m
2026-09-02 09:52:26 +02:00
parent 479c8ab61c
commit 32a61e6a64
94 changed files with 95 additions and 6476 deletions
+11
View File
@@ -0,0 +1,11 @@
package main
type User struct {
Username string
}
func NewUser(username string) (error, User) {
return nil, User{
Username: username,
}
}