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
Then passes on such user requests to the Handler in the end.
However, for a pure GET operation that has no any parameters, like /health that I need to return CPU & Mem info, how should I write a Handler wrapper for it please?
The text was updated successfully, but these errors were encountered:
One could make the argument that implementing a health check endpoint isn't the responsibility of application core. It isn't a business requirement. Health checks belong in the infrastructure layer. It shouldn't go through a command or query.
Fine. but I do have application core that do not need any parameters at all though. The health check is just an example that I don't need more explanation and people would understand. I do have application core that are like that, no any parameters.
How should I write a Handler wrapper for pure GET operation that has no any parameters?
All Handler wrappers seems to need to wrap onto something, of what the user is requesting:
wild-workouts-go-ddd-example/internal/trainings/app/command/schedule_training.go
Line 24 in 56ef6d5
Then passes on such user requests to the Handler in the end.
However, for a pure GET operation that has no any parameters, like
/health
that I need to return CPU & Mem info, how should I write a Handler wrapper for it please?The text was updated successfully, but these errors were encountered: