Revision 6534d852f8bcef689ffa4023325c8cbaa71cdf9c authored by Luke Bjerring on 14 March 2018, 15:55:18 UTC, committed by Philip Jägenstedt on 14 March 2018, 15:55:18 UTC
1 parent 7d1bf74
Raw File
serve.py
import sys
import logging

try:
    from tools.serve import serve
except ImportError:
    logging.error("tools.serve not found.  Did you forget to run "
                  '"git submodule update --init --recursive"?')
    sys.exit(2)

def main():
    serve.main()
back to top