9 lines
164 B
Python
9 lines
164 B
Python
import logging
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def main():
|
|
LOGGER.info("Starting booking padel court")
|
|
|
|
LOGGER.info("Finished booking padel court")
|