cryptcheck-rails/app/controllers/tls_controller.rb

15 lines
146 B
Ruby
Raw Normal View History

2015-09-09 22:31:01 +00:00
class TlsController < CheckController
protected
def type
:tls
end
def worker
TLSWorker
end
def tls_type
'TLS'
end
end