feat: Add main script

This commit is contained in:
2025-11-25 14:53:31 -07:00
committed by Tanner Collin (aider)
parent 8fc63313d3
commit 1c463c5113

18
main.py Normal file
View File

@@ -0,0 +1,18 @@
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)
import secrets
WATCH_PATHS = [
'/tmp/watch-test',
]
def main():
pass
if __name__ == '__main__':
main()