You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
407 B
19 lines
407 B
"""EasyEngine domain check module."""
|
|
|
|
|
|
class EEDomainCheck():
|
|
|
|
"""Intialization domain check"""
|
|
def ___init__():
|
|
# TODO Intialization for domain check
|
|
pass
|
|
|
|
"""Check for proper domain"""
|
|
def isdomain():
|
|
# TODO method for doamin check
|
|
pass
|
|
|
|
"""Check for proper Fully qualified domain"""
|
|
def isfqdn():
|
|
# TODO method for FQDN check
|
|
pass
|
|
|