mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-30 04:57:50 -05:00
10 lines
142 B
Ruby
10 lines
142 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class BaseController < JSONAPI::ResourceController
|
|
abstract
|
|
end
|
|
end
|
|
end
|