mirror of
https://github.com/github/codeql.git
synced 2026-01-13 14:34:45 +01:00
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
angular.module('myModule', [])
|
|
.controller('MyController', ['$scope',
|
|
'$cookies',
|
|
function($scope, $cookies) {
|
|
// ...
|
|
});
|