Javascript-Closure-Angular.es6.module.mustache Maven / Gradle / Ivy
{{#apiInfo}}
{{#apis}}
{{#operations}}
import {{classname}} from './resources/{{classname}}';
{{/operations}}
{{/apis}}
let moduleName = '{{appName}}'.toLowerCase().replace(/\s/g, '.');
export default angular
.module(moduleName, [])
{{#apis}}
{{#operations}}
.service('{{classname}}', {{classname}})
{{/operations}}
{{/apis}};
{{/apiInfo}}