11 lines
165 B
JavaScript
11 lines
165 B
JavaScript
|
'use strict';
|
||
|
angular.module('config', [])
|
||
|
.factory('config', function() {
|
||
|
return {
|
||
|
api: 'https://apiv2.warehost.de',
|
||
|
table: {
|
||
|
count: 25
|
||
|
}
|
||
|
};
|
||
|
});
|