mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 13:11:33 +00:00
11 lines
233 B
JavaScript
Executable File
11 lines
233 B
JavaScript
Executable File
'use strict';
|
|
|
|
angular.module('dssWebApp')
|
|
.factory('NotificationService', function () {
|
|
return {
|
|
getNotifications: function () {
|
|
console.log('Notifications');
|
|
}
|
|
};
|
|
});
|