Created
September 6, 2015 11:05
-
-
Save qetr1ck-op/f91462f76a1ca37f3232 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
let app = angular.module('app',[]); | |
app.service('MyService', function(){ | |
//service code | |
}); | |
app.controller('MyCtrl', function($scope, MyService){ | |
//controller code | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment