1
0

initial commit

This commit is contained in:
2024-03-22 10:24:54 +03:00
commit d7d4344c53
82 changed files with 1361 additions and 0 deletions

9
njs/nexus.js Normal file
View File

@@ -0,0 +1,9 @@
function statics(r) {
var bytes = crypto.getRandomValues(new Uint8Array(1));
var s = (bytes[0] & 15).toString(16);
s = "https://nexus-st-" + s + ".krd.sh" + r.uri;
if (r.args.length > 0) { s += r.variables.is_args + r.variables.args; }
r.return(307, s);
}
export default {statics};