fossasia/loklak_webclient

View on GitHub
app/js/services/hello.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

var servicesModule = require('./_index.js');
var hello = require('../components/hello.all.js');

/**
 * @ngInject
 */
function HelloService() {

  return hello;

}

servicesModule.service('HelloService',[HelloService]);