8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
'use strict';
|
|
|
|
angular.module('cosign.network').factory('Network',
|
|
function() {
|
|
this.f = function() {
|
|
return 2;
|
|
};
|
|
});
|