bumper/bumper.py
Torbjörn Axelsson d9ceeea556 Initial commit
2017-12-15 15:14:33 -08:00

16 lines
288 B
Python

#!/usr/bin/env python3
import logging
import bumper
logging.basicConfig(level=logging.INFO,
format='%(levelname)-8s %(message)s')
bumper.ConfServer()
bumper.XMPPServer()
try:
while True:
pass
except KeyboardInterrupt:
logging.info('keyboard interrupt')