mirror of
https://github.com/denoland/deno.git
synced 2025-01-27 17:33:23 -05:00
7 lines
127 B
Python
Executable file
7 lines
127 B
Python
Executable file
#!/usr/bin/env python
|
|
import sys
|
|
from build import main as build
|
|
from test import main as test
|
|
|
|
build(sys.argv)
|
|
test(sys.argv)
|