import { type Framework, WorkspaceScope } from '@toeverything/infra'; import { MobileSearchService } from './service/search'; export { MobileSearchService }; export function configureMobileSearchModule(framework: Framework) { framework.scope(WorkspaceScope).service(MobileSearchService); }