indentation

This commit is contained in:
Robin Dittmar
2026-07-20 22:10:37 +02:00
parent f902082796
commit 1ce0c8fdb7
-2
View File
@@ -31,11 +31,9 @@ func (s *UserService) CreateUser(ctx context.Context, email string, name string,
if len(email) == 0 {
return nil, errors.New("email is required")
}
if len(name) == 0 {
return nil, errors.New("name is required")
}
if len(password) == 0 {
return nil, errors.New("password is required")
}