Initial commit
This commit is contained in:
commit
d9ceeea556
10 changed files with 462 additions and 0 deletions
16
bumper.py
Normal file
16
bumper.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#!/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')
|
||||
Loading…
Add table
Add a link
Reference in a new issue