I am trying to create an angular service but it is not working. I have tried numeros things and looked all over.Please help
 //service 
 angular
    .module('RDash')
    .factory('googleLogin', googleLogin); 
function googleLogin() 
{
    this.testFunc = function () 
    {
        console.log("THIS IS A TEST SERVICE");
    }
};
Below: tryoing to call service test func
//controller
angular
    .module('RDash')
    .controller('ComposeCtrl', ['$scope','$rootScope','$http','googleLogin', ComposeCtrl]);
function ComposeCtrl($scope, $rootScope, $http, googleLogin) {
    console.log("ComposeCTRL active");
    googleLogin.testFunc(); // this doesnt work, error: "main.min.js:2 Error: [$injector:undef] http://errors.angularjs.org/1.5.8/$injector/undef?p0=googleLogin" 
I feel like the issue is with injecting i just dont know where. Please help thanks
 
     
     
    