redirect-localhost / server.ts
coyotte508's picture
coyotte508 HF staff
✨ Tada
c24174e
raw
history blame
135 Bytes
import Koa from "koa";
const app = new Koa();
app.use((ctx) => {
ctx.body = {
url: ctx.request.url,
};
});
app.listen(7860);