mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-14 10:53:01 +08:00
13 lines
261 B
Ruby
13 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ProtocolImporters
|
|
class ProtocolNormalizer
|
|
def normalize_all_protocols(_client_data)
|
|
raise NotImplementedError
|
|
end
|
|
|
|
def normalize_protocol(_client_data)
|
|
raise NotImplementedError
|
|
end
|
|
end
|
|
end
|