mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +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
11 lines
411 B
TypeScript
11 lines
411 B
TypeScript
import { ServiceContainer } from "./service-container";
|
|
|
|
/**
|
|
* All Bitwarden-licensed programs should be registered here.
|
|
* @example
|
|
* const myProgram = new myProgram(serviceContainer);
|
|
* myProgram.register();
|
|
* @param serviceContainer A class that instantiates services and makes them available for dependency injection
|
|
*/
|
|
export async function registerBitPrograms(serviceContainer: ServiceContainer) {}
|