Files
croccybot/bot/data/tables.py
2021-08-25 22:56:45 +03:00

9 lines
150 B
Python

from .data import RowTable, Table
raw_users = Table('Users')
users = RowTable(
'users',
('userid', 'tracked_time', 'coins'),
'userid',
)