chat-app/backend/app/controllers/application_controller.rb
2025-02-15 22:16:39 +09:00

5 lines
120 B
Ruby

class ApplicationController < ActionController::API
def test
render json: { message: 'This is a test' }
end
end