blob: 370bd518d4fafbba7c3e7dd03cf9b61261fc69b8 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env python
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
import sys
from build import main as build
from test import main as test
build(sys.argv)
test(sys.argv)
|