mirror of
https://github.com/Justuser3310/jetwork.git
synced 2025-02-08 01:37:38 +00:00
9 lines
139 B
Python
9 lines
139 B
Python
def domain_ok(domain):
|
|
domains = ["jet"]
|
|
|
|
if domain.count(".") == 1:
|
|
if domain.split(".")[1] in domains:
|
|
return True
|
|
|
|
return False
|