svoop/rodbot

View on GitHub
lib/rodbot/constants.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen-string-literal: true

module Rodbot
  module Constants

    # Service types
    SERVICES = %i(app relay schedule).freeze

    # Hosting types
    HOSTINGS = %i(procfile docker render).freeze

  end
end