You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -293,7 +293,7 @@ func (s *Server) createUser(c *gin.Context) {
293
293
}
294
294
```
295
295
296
-
you should ALWAYS move business logic out of gin handlers and into a separate function with a clean type signature. Merthods that handle business logic should not know about gin or http.
296
+
you should ALWAYS move business logic out of gin handlers and into a separate function with a clean type signature. Methods that handle business logic should not know about gin or http.
297
297
298
298
```
299
299
func createUser(ctx context.Context, user User) (*User, error) {
0 commit comments