Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Created September 6, 2015 11:05
Show Gist options
  • Save qetr1ck-op/f91462f76a1ca37f3232 to your computer and use it in GitHub Desktop.
Save qetr1ck-op/f91462f76a1ca37f3232 to your computer and use it in GitHub Desktop.
'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