Revision 3c9fd9d383c9adca4aa23a4f184fb469101e1d8f authored by Jonathon Kereliuk on 06 July 2018, 15:57:56 UTC, committed by GitHub on 06 July 2018, 15:57:56 UTC
2 parent s 8c77bf2 + a7affd5
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