项目文件夹

文件
Magnus Müller acda8c72a0 Simplify helper surface (#23)
* Simplify helper surface

* Trim common module and restore dispatch key
2026-04-17 21:37:58 -07:00

14 行
167 B
Python

import sys
from admin import ensure_daemon
from helpers import *
def main():
ensure_daemon()
exec(sys.stdin.read())
if __name__ == "__main__":
main()