The service provider that once registered on the container will set an instance of
FrontendFs as the frontendFs service.
Example
// Register it on the container container.register(frontendFsProvider); // Getting access to the service instance constfrontendFs = container.get<FrontendFs>('frontendFs');
// Register the collection on the container container.register(frontendServicesProvider); // Getting access to one the services instance constfrontendFs = container.get<FrontendFs>('frontendFs');
Registers all the frontend services on the container.