The application config allows the user to set the name of the application.
Currently, this configured app name is not respected in cmd/realy/app/implementation.go. Instead, the Name() function in that file returns the hard-coded string "REALY".
Recommendation: Return the configured app name from the Name() function in cmd/realy/app/implementation.go.
The application config allows the user to set the name of the application.
Currently, this configured app name is not respected in cmd/realy/app/implementation.go. Instead, the
Name()
function in that file returns the hard-coded string"REALY"
.Recommendation: Return the configured app name from the
Name()
function incmd/realy/app/implementation.go
.