Files
todo-back/config/routes.rb
T
2026-08-08 21:14:10 -05:00

5 lines
153 B
Ruby

Rails.application.routes.draw do
get "up" => "health#show", as: :rails_health_check
resources :todos, only: %i[index show create update destroy]
end