2023-11-26 22:17:55 +08:00
|
|
|
const __DEBUG__=1,
|
2023-11-27 12:56:21 +08:00
|
|
|
__APP_VERSION__='v0.1.2a',
|
|
|
|
__APP_INTRO__=`
|
|
|
|
<b>Relocating Support</b><br>
|
|
|
|
Can't find where you are from? We now memorize the last location you visited. Tap the "Relocate" button to find your way home.<br><br>
|
|
|
|
<i>This update also include several stability and UI improvements.</i>
|
|
|
|
`;
|
2023-11-26 22:17:55 +08:00
|
|
|
|
|
|
|
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__,
|
|
|
|
});
|
|
|
|
}
|