Change imports to match

This commit is contained in:
Daniel Flanagan 2022-10-07 14:13:45 -05:00
parent d904f1fac2
commit f7d08d11b6
Signed by untrusted user: lytedev-divvy
GPG Key ID: 6D69CEEE4ABBCD82
5 changed files with 7 additions and 7 deletions

View File

@ -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;

View File

@ -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 {

View File

@ -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;

View File

@ -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;

View File

@ -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;