# frozen_string_literal: true module OpenVPNConfigurator # Represents a comment to be inserted into the configuration file class Comment def initialize(message) @message = message end def to_s "#{@message.gsub("\n", ' ')}" end end end