Revision 0294ce4cbf33c7f94799ab913086309158b5ceda authored by Luke Bjerring on 03 July 2018, 16:46:14 UTC, committed by GitHub on 03 July 2018, 16:46:14 UTC
1 parent 5c8e16d
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