mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
* 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
14 lines
346 B
TypeScript
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 {}
|