feat: add initial main script and logging

This commit is contained in:
Tanner Collin 2025-06-17 19:19:10 -06:00 committed by Tanner Collin (aider)
commit 6f112c0043

11
main.py Normal file
View File

@ -0,0 +1,11 @@
import os, logging
DEBUG = os.environ.get('DEBUG')
logging.basicConfig(
format='[%(asctime)s] %(levelname)s %(module)s/%(funcName)s - %(message)s',
level=logging.DEBUG if DEBUG else logging.INFO)
def main():
pass
if __name__ == '__main__':
main()