heartbeatserver/bin/server

10 lines
194 B
Plaintext
Raw Normal View History

2018-10-23 22:07:28 +02:00
#!/usr/bin/python3
import sys, os
sys.path.append(os.path.dirname(os.path.realpath(__file__)) + '/..')
from heartbeat import server
if __name__ == '__main__':
args = {}
server.start(args)