瀏覽代碼

rm unnecessary export

Shun Miyazawa 2 年之前
父節點
當前提交
aa9ed842cc
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      apps/app/src/server/service/yjs-connection-manager.ts

+ 2 - 2
apps/app/src/server/service/yjs-connection-manager.ts

@@ -7,8 +7,8 @@ import { getMongoUri } from '../util/mongoose-utils';
 
 let instance: YjsConnectionManagerImpl | undefined;
 
-export const MONGODB_PERSISTENCE_COLLECTION_NAME = 'yjs-writings';
-export const MONGODB_PERSISTENCE_FLUSH_SIZE = 100;
+const MONGODB_PERSISTENCE_COLLECTION_NAME = 'yjs-writings';
+const MONGODB_PERSISTENCE_FLUSH_SIZE = 100;
 
 interface YjsConnectionManager {
   handleYDocSync(pageId: string, initialValue: string): Promise<void>;