ProxmoxDeploy/run.py

8 lines
165 B
Python
Raw Normal View History

2023-06-09 11:49:51 +02:00
import logging
from src import main
if __name__ == '__main__':
2023-06-11 21:05:32 +02:00
logging.basicConfig(format='[%(levelname)s] : %(message)s', level=logging.DEBUG)
2023-06-09 11:49:51 +02:00
main.run()