|
|
|
"""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
|