2023-12-27 11:06:29 +08:00
|
|
|
import {__APP_VERSION__, __APP_INTRO__} from "../PublicProperty";
|
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__,
|
|
|
|
});
|
|
|
|
}
|