mirror of
https://git.minetest.land/dn42/registry
synced 2025-10-10 09:23:41 +02:00
12 lines
183 B
Python
12 lines
183 B
Python
"""RSPL Status
|
|
==============
|
|
"""
|
|
|
|
|
|
from typing import List, Dict
|
|
|
|
|
|
def run(args: List[str], env: Dict[str, str]) -> int:
|
|
"do run"
|
|
print("RUN STATUS", args, env)
|
|
return 0
|