cryptcheck/lib/cryptcheck.rb

13 lines
289 B
Ruby
Raw Normal View History

2015-01-21 23:11:30 +00:00
module CryptCheck
module Tls
autoload :Server, 'cryptcheck/tls/server'
autoload :Grade, 'cryptcheck/tls/grade'
autoload :Https, 'cryptcheck/tls/https'
module Https
autoload :Server, 'cryptcheck/tls/https/server'
autoload :Grade, 'cryptcheck/tls/https/grade'
end
end
end