Skip to content

Instantly share code, notes, and snippets.

@xcarpentier
Last active August 29, 2015 14:06
Show Gist options
  • Save xcarpentier/be9bf5aafc34245de119 to your computer and use it in GitHub Desktop.
Save xcarpentier/be9bf5aafc34245de119 to your computer and use it in GitHub Desktop.
/* Recommandé */
// app.module.js
angular
.module('app', ['ngRoute']);
/* Recommandé */
// someController.js
angular
.module('app')
.controller('SomeController' , SomeController);
function SomeController() { }
/* Recommandé */
// someFactory.js
angular
.module('app')
.factory('someFactory' , someFactory);
function someFactory() { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment