mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 04:55:11 +00:00
16 lines
286 B
JavaScript
16 lines
286 B
JavaScript
'use strict';
|
|
|
|
angular.module('dssWebApp')
|
|
.provider('ServerSettings', function () {
|
|
var values = {
|
|
apiUrl: '',
|
|
radioHost: ''
|
|
};
|
|
|
|
return {
|
|
$get: function () {
|
|
return values;
|
|
}
|
|
}
|
|
});
|