15 lines
146 B
Ruby
15 lines
146 B
Ruby
|
class TlsController < CheckController
|
||
|
protected
|
||
|
def type
|
||
|
:tls
|
||
|
end
|
||
|
|
||
|
def worker
|
||
|
TLSWorker
|
||
|
end
|
||
|
|
||
|
def tls_type
|
||
|
'TLS'
|
||
|
end
|
||
|
end
|