Farmbot-Web-App/app/controllers/api/tools_controller.rb

23 lines
375 B
Ruby

module Api
class ToolsController < Api::AbstractController
def create
raise "Not implemented yet"
end
def show
raise "Not implemented yet"
end
def index
raise "Not implemented yet"
end
def update
raise "Not implemented yet"
end
def destroy
raise "Not implemented yet"
end
end
end