mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-18 06:47:02 +08:00
packages/frontend/web -> packages/frontend/apps/web packages/frontend/mobile -> packages/frontend/apps/mobile packages/frontend/electron -> packages/frontend/apps/electron
10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
import { type Framework, WorkspaceScope } from '@toeverything/infra';
|
|
|
|
import { MobileSearchService } from './service/search';
|
|
|
|
export { MobileSearchService };
|
|
|
|
export function configureMobileSearchModule(framework: Framework) {
|
|
framework.scope(WorkspaceScope).service(MobileSearchService);
|
|
}
|