scinote-web/app/utilities/protocol_importers/protocol_normalizer.rb

14 lines
252 B
Ruby
Raw Normal View History

2019-05-14 21:09:37 +08:00
# frozen_string_literal: true
module ProtocolImporters
class ProtocolNormalizer
def normalize_list(_client_data)
2019-05-14 21:09:37 +08:00
raise NotImplementedError
end
2019-06-10 19:39:53 +08:00
def normalize_protocol(_client_data)
2019-05-14 21:09:37 +08:00
raise NotImplementedError
end
end
end