Revision 8c66f53eb8ceb9cde98d5c59da28ed6e308d9642 authored by Luke Bjerring on 29 March 2018, 16:47:19 UTC, committed by GitHub on 29 March 2018, 16:47:19 UTC
1 parent 4091ab0
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