Files
start-os/frontend/projects/ui/src/app/marketplace.module.ts
Alex Inkin 8942c29229 feat(marketplace): add separate package and move some entities in it (#1283)
* feat(marketplace): add separate package and move some entities in it

* feat(marketplace): refactor release notes and list

* feat(marketplace): refactor showing a package

* chore: fix install progress

* chore: fix angular.json

* chore: properly share stream
2022-03-15 11:11:54 -06:00

14 lines
346 B
TypeScript

import { NgModule } from '@angular/core'
import { AbstractMarketplaceService } from '@start9labs/marketplace'
import { MarketplaceService } from 'src/app/services/marketplace.service'
@NgModule({
providers: [
{
provide: AbstractMarketplaceService,
useClass: MarketplaceService,
},
],
})
export class MarketplaceModule {}