# frozen_string_literal: true module Api module V1 class CustomersController < Api::V1::BaseController def index; end def show; end def update; end def destroy; end end end end