new folder structure

This commit is contained in:
sprechtl 2022-10-10 00:10:11 +02:00
parent aa65cead2e
commit 07e014cd8f
4 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import type {Note} from "./types"; import type {Note} from "../../types";
export interface NoteRepository { export interface NoteRepository {
getNotes(): Promise<Note[]>; getNotes(): Promise<Note[]>;

View file

@ -1,4 +1,4 @@
import type {Note} from "./types"; import type {Note} from "../../types";
import {parseCookies} from "nookies"; import {parseCookies} from "nookies";
import type {NoteRepository} from "./NoteRepository"; import type {NoteRepository} from "./NoteRepository";