# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # Common Configuration settings. Those in this section pertain to the # communication between the Agent & the Service. class ServiceConfiguration < BaseConfiguration KEYS = { enable: EMPTY_VALUE, host: EMPTY_VALUE, port: EMPTY_VALUE, socket: EMPTY_VALUE, logger: Contrast::Config::LoggerConfiguration }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end