mirror of
https://git.minetest.land/dn42/registry
synced 2025-10-12 18:26:21 +02:00
9 lines
136 B
Python
Executable file
9 lines
136 B
Python
Executable file
#!/usr/bin/env python3
|
|
"run main code"
|
|
|
|
import sys
|
|
from main import run
|
|
|
|
if __name__ == '__main__':
|
|
code = run()
|
|
sys.exit(code)
|