2023-11-26 22:17:55 +08:00
|
|
|
const __DEBUG__=1,
|
|
|
|
__APP_VERSION__='v1.0a1',
|
|
|
|
__APP_INTRO__='<list>\n' +
|
|
|
|
' <li>We can actively detect the connection status now!</li>\n' +
|
|
|
|
'</list>';
|
|
|
|
|
|
|
|
export default function handler(req,res){
|
|
|
|
res.status(200).json({
|
2023-11-26 22:25:26 +08:00
|
|
|
log: 'Method: handshake\nStatus: responded handshake request',
|
2023-11-26 22:17:55 +08:00
|
|
|
version: __APP_VERSION__,
|
|
|
|
intro: __APP_INTRO__,
|
|
|
|
});
|
|
|
|
}
|