AI Features

Solution: Adding Users and Migrating to Oak

Review the solution for the Adding Users and Migrating to Oak challenge.

We'll cover the following...

Solution

Task 1

Add the following dependencies in the src/deps.ts file:

export { serve } from "https://deno.land/std@0.83.0/http/server.ts";
export {Application} from "https://deno.land/x/oak@v6.3.1/mod.ts"
export {Router} from "https://deno.land/x/oak@v6.3.1/mod.ts"

After ...

Ask