Initalized git repo, added basic files and a logger

This commit is contained in:
Stanislas Jouffroy 2024-02-11 00:43:10 +01:00
parent 50835e924c
commit aa155b2748
10 changed files with 479 additions and 0 deletions

13
resa_padel/__main__.py Normal file
View file

@ -0,0 +1,13 @@
import logging
import config
config.init_log_config()
import booking
logger = logging.getLogger(__name__)
logger.info("Starting resa_padel")
booking.main()
logger.info("Finished resa_padel")