mirror of
https://github.com/bitwarden/browser
synced 2026-01-21 03:43:41 +00:00
* Create bit-cli folder with configs * Add bit-cli to workspace * Refactor CLI app structure * services are managed by the ServiceContainer * programs are registered by register(Oss|Bit)Program * the app is bootstrapped by Main * Reapply changes from #9099 * Reapply changes from #8604 * Reapply changes from #9115
8 lines
300 B
TypeScript
8 lines
300 B
TypeScript
import { ServiceContainer as OssServiceContainer } from "@bitwarden/cli/service-container";
|
|
|
|
/**
|
|
* Instantiates services and makes them available for dependency injection.
|
|
* Any Bitwarden-licensed services should be registered here.
|
|
*/
|
|
export class ServiceContainer extends OssServiceContainer {}
|