feature (timer): Core pomodoro system.

This commit is contained in:
2022-01-08 02:58:16 +02:00
parent 0cdb2bbdca
commit 5431877569
5 changed files with 785 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
from data import RowTable
timers = RowTable(
'timers',
('channelid', 'guildid',
'focus_length', 'break_length',
'inactivity_threshold',
'last_started',
'text_channelid',
'channel_name', 'pretty_name'),
'channelid',
cache={}
)