freeCodeCamp/public/js/services.js

10 lines
183 B
JavaScript
Raw Normal View History

'use strict';
/* Services */
// Demonstrate how to register services
// In this case it is a simple value service.
angular.module('myApp.services', []).
value('version', '0.1');