mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
16 lines
217 B
Ruby
16 lines
217 B
Ruby
# 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
|