William Petit b0f3cba188
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: initial commit
2023-05-15 20:01:05 +02:00

8 lines
106 B
Go

package store
type Name string
func ValidateName(name string) (Name, error) {
return Name(name), nil
}