started working on subdomains extension

This commit is contained in:
Kristjan
2020-12-28 19:51:45 +01:00
parent 1c922a5ddc
commit 3c398a8276
8 changed files with 489 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
from typing import NamedTuple
class Domains(NamedTuple):
id: str
wallet: str
domainName: str
cfToken: str
cfZoneId: str
webhook: str
description: str
cost: int
amountmade: int
time: int
class Subdomains(NamedTuple):
id: str
domainName: str
email: str
subdomain: str
ip: str
wallet: str
sats: int
paid: bool
time: int