heartbeatserver/bin/server

10 lines
194 B
Text
Raw Normal View History

2018-10-23 20:07:28 +00: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)