travis-web/server/lib/travis/web.rb

14 lines
342 B
Ruby

module Travis
module Web
autoload :Allow, 'travis/web/allow'
autoload :ApiRedirect, 'travis/web/api_redirect'
autoload :App, 'travis/web/app'
autoload :Config, 'travis/web/config'
autoload :SetToken, 'travis/web/set_token'
end
def self.config
@config ||= Travis::Web::Config.new
end
end