tangled
alpha
login
or
join now
teal.fm
/
teal
110
fork
atom
Your music, beautifully tracked. All yours. (coming soon)
teal.fm
teal-fm
atproto
110
fork
atom
overview
issues
pulls
pipelines
mount refresh on router
natalie
1 year ago
424aa049
f23e95f8
+1
1 changed file
expand all
collapse all
unified
split
apps
aqua
src
auth
router.ts
+1
apps/aqua/src/auth/router.ts
···
121
const app = new Hono<EnvWithCtx>();
122
123
app.get("/callback", async (c) => callback(c));
0
124
125
export const getAuthRouter = () => {
126
return app;
···
121
const app = new Hono<EnvWithCtx>();
122
123
app.get("/callback", async (c) => callback(c));
124
+
app.get("/refresh", async (c) => refresh(c));
125
126
export const getAuthRouter = () => {
127
return app;