mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
13 lines
252 B
Ruby
13 lines
252 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ProtocolImporters
|
|
class ProtocolNormalizer
|
|
def normalize_list(_client_data)
|
|
raise NotImplementedError
|
|
end
|
|
|
|
def normalize_protocol(_client_data)
|
|
raise NotImplementedError
|
|
end
|
|
end
|
|
end
|