Change imports to match
This commit is contained in:
parent
d904f1fac2
commit
f7d08d11b6
|
@ -1,7 +1,7 @@
|
|||
import { HandlerContext, Handlers, PageProps } from "$fresh/server.ts";
|
||||
import { compare } from "https://deno.land/x/bcrypt@v0.4.1/mod.ts";
|
||||
import { Page } from "@/components/Page.tsx";
|
||||
import { query } from "../db.ts";
|
||||
import { query } from "@/db/mod.ts";
|
||||
|
||||
type UserID = string;
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { Handlers, PageProps } from "$fresh/server.ts";
|
||||
import { query } from "@/db.ts";
|
||||
import { query } from "@/db/mod.ts";
|
||||
import { Page } from "@/components/Page.tsx";
|
||||
|
||||
interface Note {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { Handlers, PageProps } from "$fresh/server.ts";
|
||||
import { query } from "../../db.ts";
|
||||
import { Page } from "../../components/Page.tsx";
|
||||
import { query } from "@/db/mod.ts";
|
||||
import { Page } from "@/components/Page.tsx";
|
||||
|
||||
interface Note {
|
||||
id: string;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { Handlers, PageProps } from "$fresh/server.ts";
|
||||
import { query } from "@/db.ts";
|
||||
import { query } from "@/db/mod.ts";
|
||||
import { Page } from "@/components/Page.tsx";
|
||||
|
||||
type NoteID = string;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { Handlers, PageProps } from "$fresh/server.ts";
|
||||
import { Page } from "../components/Page.tsx";
|
||||
import { PostgresError, query } from "../db.ts";
|
||||
import { Page } from "@/components/Page.tsx";
|
||||
import { PostgresError, query } from "@/db/mod.ts";
|
||||
import { hash } from "https://deno.land/x/bcrypt@v0.4.1/mod.ts";
|
||||
|
||||
type UserID = string;
|
||||
|
|
Loading…
Reference in a new issue