diff options
| author | 2024-08-01 21:29:55 +0100 | |
|---|---|---|
| committer | 2024-08-01 21:29:55 +0100 | |
| commit | f3cc0fac7c584b1de8b0e444ddca9e681961687f (patch) | |
| tree | f68b496fe3390506d50457eaf2aca1cf5f14769f /app/__main__.py | |
Initial commit
Diffstat (limited to 'app/__main__.py')
| -rw-r--r-- | app/__main__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/__main__.py b/app/__main__.py new file mode 100644 index 0000000..d2f7b64 --- /dev/null +++ b/app/__main__.py @@ -0,0 +1,6 @@ +import logging + +from app.settings import SETTINGS + +log = logging.getLogger(__name__) +log.info("Hello world! %s", SETTINGS.git_sha) |