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