module.exports = {
error_no_start_reason_already_running: ( service ) => {
return service + ' cannot be started because it is already running'
},
no_stop_reason_not_started: ( service ) => {
return service + ' cannot be stopped because it is not running'
}
}