{{#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}}