I have a service:
angular.module('USC').service('TemplateService', function() {});
That I would like to use before I manually bootstrap my Angular project:
angular.bootstrap(document, ['USC']);
Is this possible? I know I can call var service = angular.bootstrap().get(); for Angular provided services, but how would I call a custom one before the module was initialized?