Update booking times and adjust resource ID handling for improved flexibility

This commit is contained in:
b267a 2026-01-23 09:03:20 +01:00
parent c4cef0d9b5
commit fa6e0fd853
3 changed files with 13 additions and 9 deletions

12
main.py
View file

@ -42,16 +42,16 @@ def main():
times = [
{
'start': '13:00:00',
'end': '18:00:00'
'start': '14:00:00',
'end': '19:00:00'
},
{
'start': '08:00:00',
'end': '12:00:00'
'start': '09:00:00',
'end': '13:00:00'
},
{
'start': '19:00:00',
'end': '21:00:00'
'start': '20:00:00',
'end': '24:00:00'
},
]