nanomap/api/handshake.js

17 lines
709 B
JavaScript
Raw Normal View History

const __DEBUG__=1,
2023-11-27 12:56:21 +08:00
__APP_VERSION__='v0.1.2a',
__APP_INTRO__=`
2023-11-27 13:01:46 +08:00
<b>Relocating Support</b>
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>
<b>Nearby Search</b>
You can first locate a general area and schedule detailed travel plan later. Tap the magnifier/gear icon to toggle between Nearby Search mode and Global Search mode.
<i>This update also includes several stability and UI improvements.</i>
2023-11-27 12:56:21 +08:00
`;
export default function handler(req,res){
res.status(200).json({
log: 'Method: handshake\nStatus: responded handshake request',
version: __APP_VERSION__,
intro: __APP_INTRO__,
});
}