Files
2026-02-05 15:27:49 +08:00

10 lines
107 B
JavaScript

async function auth(reason) {
return {
type: "unauthenticated",
reason
};
}
export {
auth
};