Files
MatchLiveTv/backend/app/controllers/api/v1/sports_controller.rb
Emiliano Frascaro e727069d43 Introduce architettura multi-sport con catalogo, engine scoring e overlay.
Catalogo sport in YAML, board implicito, engine per volley/basket/timed/racket/timer/generic, regia e app Android allineate.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-09 20:11:21 +02:00

10 lines
160 B
Ruby

module Api
module V1
class SportsController < BaseController
def index
render json: Sports::Catalog.as_api_list
end
end
end
end