(Renting): Created the Renting module and system.

This commit is contained in:
2021-09-16 12:23:06 +03:00
parent 0e63c2da7a
commit f236ca2e97
9 changed files with 605 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
from data import RowTable, Table
rented = RowTable(
'rented',
('channelid', 'guildid', 'ownerid', 'expires_at', 'created_at'),
'channelid'
)
rented_members = Table('rented_members')