9 lines
148 B
JavaScript
9 lines
148 B
JavaScript
|
'use strict';
|
||
|
|
||
|
angular.module('ffffng').factory('config', function () {
|
||
|
return {
|
||
|
port: 8080,
|
||
|
peersPath: '/tmp/peers'
|
||
|
};
|
||
|
});
|