diff --git a/plugin/src/NoteSharingService.ts b/plugin/src/NoteSharingService.ts index 5a31f69..98007d8 100644 --- a/plugin/src/NoteSharingService.ts +++ b/plugin/src/NoteSharingService.ts @@ -1,5 +1,5 @@ import { requestUrl } from "obsidian"; -import { encryptMarkdown } from "./encryption"; +import { encryptMarkdown } from "./crypto/encryption"; export class NoteSharingService { private _url: string; diff --git a/plugin/src/crypto.test.ts b/plugin/src/crypto/crypto.test.ts similarity index 100% rename from plugin/src/crypto.test.ts rename to plugin/src/crypto/crypto.test.ts diff --git a/plugin/src/crypto.ts b/plugin/src/crypto/crypto.ts similarity index 100% rename from plugin/src/crypto.ts rename to plugin/src/crypto/crypto.ts diff --git a/plugin/src/encryption.ts b/plugin/src/crypto/encryption.ts similarity index 100% rename from plugin/src/encryption.ts rename to plugin/src/crypto/encryption.ts diff --git a/server/prisma/dev.db b/server/prisma/dev.db index a8360e4..a0f9a2b 100644 Binary files a/server/prisma/dev.db and b/server/prisma/dev.db differ