1cd41fb789ec4035419f7693389942ae56e399ad
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / ux / mwtnEvents / mwtnEvents-module / src / main / resources / mwtnEvents / mwtnEvents.services.js
1 /*
2  * Copyright (c) 2016 Tech Mahindra Ltd. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 define([ 'app/mwtnEvents/mwtnEvents.module' ], function(mwtnEventsApp) {
10
11   mwtnEventsApp.register.factory('$mwtnEvents', function($mwtnCommons) {
12
13     var service = {};
14     
15     service.gridOptions = $mwtnCommons.gridOptions;
16     service.getMwtnWebSocketUrl = $mwtnCommons.getMwtnWebSocketUrl;
17     service.formatData = $mwtnCommons.formatData;
18     
19     
20     return service;
21   });
22 });