mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
8 lines
201 B
Python
Executable file
8 lines
201 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright 2018-2019 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)
|