16 lines
267 B
Ruby
16 lines
267 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module V1
|
|
module Weather
|
|
class ObservationsController < APIController
|
|
def create
|
|
Rails.logger.debug 'Create new observation'
|
|
|
|
head :ok
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|