moved network.js to /services/network.js

This commit is contained in:
Mario Colque 2014-03-25 12:16:53 -03:00
commit a247d82a80
27 changed files with 114 additions and 29540 deletions

8
js/services/network.js Normal file
View file

@ -0,0 +1,8 @@
'use strict';
angular.module('cosign.network').factory('Network',
function() {
this.f = function() {
return 2;
};
});