2018-10-17 19:05:10 -04:00
|
|
|
#!/usr/bin/env python
|
2018-10-19 15:25:29 -04:00
|
|
|
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
2018-10-17 19:05:10 -04:00
|
|
|
import sys
|
|
|
|
from build import main as build
|
|
|
|
from test import main as test
|
|
|
|
|
|
|
|
build(sys.argv)
|
|
|
|
test(sys.argv)
|