Sha256: eca41e23aa41bc1d07a8cdf8f7548e75b792828cbfcc873f570e185a2241a550

Contents?: true

Size: 273 Bytes

Versions: 1

Compression:

Stored size: 273 Bytes

Contents

# frozen_string_literal: true

require "anyway_config"
require "logger"

module Trellodon
  class Config < Anyway::Config
    config_name :trellodon

    attr_config :api_token, :api_key

    def self.logger
      Logger.new($stdout, level: Logger::INFO)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
trellodon-0.4.0 lib/trellodon/config.rb