# frozen_string_literal: true module Api module V1 # API class BaseController < ActionController::Base protect_from_forgery with: :null_session respond_to :json end end end