diff --git a/src/notes/note.utils.ts b/src/notes/note.utils.ts deleted file mode 100644 index d84c4b182..000000000 --- a/src/notes/note.utils.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Note } from './note.entity'; - -export class NoteUtils { - public static parseTitle(note: Note): string { - // TODO: Implement method - return 'Hardcoded note title'; - } - - public static parseDescription(note: Note): string { - // TODO: Implement method - return 'Hardcoded note description'; - } - - public static parseTags(note: Note): string[] { - // TODO: Implement method - return ['Hardcoded note tag']; - } -}