mirror of
https://github.com/servo/servo.git
synced 2025-06-23 00:24:35 +01:00
12 lines
263 B
Python
12 lines
263 B
Python
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()
|