Redirector to a cool playlist ๐ฆ
I love how simple is to setup an API with Oak ๐ฟ๏ธ
import { Application } from "https://deno.land/x/oak/mod.ts";
const app = new Application();
app.use((ctx) => {
ctx.response.redirect(SPOTIFY_PLAYLIST);
});
app.listen({ port: 8000 });
Licensed under the MIT License ๐