class Multiwoven::Integrations::Core::BaseConnector

def read_json(file_path)

def read_json(file_path)
  path = Object.const_source_location(self.class.to_s)[0]
  connector_folder = File.dirname(path)
  file_path = File.join(
    "#{connector_folder}/",
    file_path
  )
  file_contents = File.read(file_path)
  JSON.parse(file_contents)
end