mirror of
https://github.com/denoland/deno.git
synced 2025-02-07 06:54:07 -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)
|