Files
dss.web/client/app/providers/server.settings.js
Fergal Moran d2c529bafe Screw you git!
2015-12-01 19:50:20 +00:00

16 lines
286 B
JavaScript

'use strict';
angular.module('dssWebApp')
.provider('ServerSettings', function () {
var values = {
apiUrl: '',
radioHost: ''
};
return {
$get: function () {
return values;
}
}
});