Spaces:
Sleeping
Sleeping
| class HealthController < ActionController::API | |
| def up | |
| render plain: 'ok', status: :ok | |
| end | |
| def health | |
| render plain: 'healthy', status: :ok | |
| end | |
| end | |
| class HealthController < ActionController::API | |
| def up | |
| render plain: 'ok', status: :ok | |
| end | |
| def health | |
| render plain: 'healthy', status: :ok | |
| end | |
| end | |