Files
pebble/main.py

10 lines
102 B
Python

from src.runner import Runner
def main():
Runner.repl()
if __name__ == '__main__':
main()