mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 08:24:43 +01:00
10 lines
No EOL
212 B
Python
Executable file
10 lines
No EOL
212 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from runner import parse_args_simple, run_test
|
|
|
|
def main():
|
|
args = parse_args_simple()
|
|
run_test(name='carsales', suffix='proto', **vars(args))
|
|
|
|
if __name__ == '__main__':
|
|
main() |