This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
'use strict';
|
|
angular.module('config', [])
|
|
.factory('config', function() {
|
|
return {
|
|
api: 'http://[::1]:8080',
|
|
table: {
|
|
count: 25
|
|
}
|
|
};
|
|
});
|