initial commit:

This commit is contained in:
2026-06-10 21:05:51 -05:00
commit 7f09944bf5
7 changed files with 96 additions and 0 deletions

9
nameserver.py Normal file
View File

@@ -0,0 +1,9 @@
from flask import Flask, make_response, jsonify
app = Flask("RecForever.NamerServer")
@app.route("/")
def root():
return jsonify({"api": "127.0.0.1:9902", "cdn": "127.0.0.1:9903", "auth": "127.0.0.1:9904"})
app.run(port=9901)