mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 04:55:11 +00:00
7 lines
136 B
JavaScript
Executable File
7 lines
136 B
JavaScript
Executable File
'use strict';
|
|
|
|
angular.module('dssWebApp')
|
|
.controller('UserCtrl', function ($scope, users) {
|
|
$scope.users = users;
|
|
});
|