mirror of
https://github.com/denoland/deno.git
synced 2025-01-24 08:00:10 -05:00
8 lines
127 B
Python
8 lines
127 B
Python
|
#!/usr/bin/env python
|
||
|
import sys
|
||
|
from build import main as build
|
||
|
from test import main as test
|
||
|
|
||
|
build(sys.argv)
|
||
|
test(sys.argv)
|