pyblock/pybitblock/SPV/console.py
2022-03-15 21:23:22 -03:00

11 lines
196 B
Python

import os
import typer
def main():
scriptpath = os.path.join(os.path.dirname(__file__), 'PyBlock.py')
os.system(f"python3 {scriptpath}")
if __name__ == "__main__":
typer.run(main)