Revision a6f2e0eb6bd0e77cfb869779b1ab49130b177244 authored by Jim Evans on 10 April 2018, 17:15:43 UTC, committed by Jim Evans on 10 April 2018, 17:15:43 UTC
1 parent 3a5f52f
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