bigly-chat/form/auth_api.js

9 lines
231 B
JavaScript
Raw Permalink Normal View History

2024-11-25 14:12:44 -05:00
import Route from "../route.js";
import auth from "../form/auth.js";
let main = new Route([auth], async function (req, res, input) {
let { username, valid } = input;
res.send({ username, valid });
});
export default main;