Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Created September 6, 2015 11:07
Show Gist options
  • Save qetr1ck-op/2b390ced242af620f214 to your computer and use it in GitHub Desktop.
Save qetr1ck-op/2b390ced242af620f214 to your computer and use it in GitHub Desktop.
'use strict';
let sharedServicesModule = angular.module('sharedServices',[]);
sharedServices.service('NetworkService', function($http){});
let loginModule = angular.module('login', ['sharedServices']);
loginModule.service('loginService', function(NetworkService){});
loginModule.controller('loginCtrl', function($scope, loginService){});
let app = angular.module('app', ['sharedServices', 'login']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment