PrintBuddy/main.py

7 lines
91 B
Python
Raw Normal View History

2021-09-06 12:02:55 +00:00
from printserver import PrintServer
2021-03-07 13:43:20 +00:00
2021-09-06 12:02:55 +00:00
# Start server
server = PrintServer()
server.start()
2021-03-07 13:32:47 +00:00