mirror of
https://github.com/KOP-XIAO/QuantumultX.git
synced 2026-01-25 21:25:09 +00:00
13 lines
382 B
JavaScript
13 lines
382 B
JavaScript
// $request, $response, $notify(title, message), console.log(message)
|
|
// $request.scheme, $request.method, $request.url, $request.path, $request.body, $request.headers
|
|
// $response.statusCode, $response.headers, $response.body
|
|
|
|
//var body = $response.body;
|
|
//var obj = JSON.parse(body);
|
|
|
|
$notify("HAHA", "Sucess");
|
|
//obj['result'] = 0;
|
|
//body = JSON.stringify(obj);
|
|
|
|
//$done(body);
|