NLeSC/PattyVis

View on GitHub
app/scripts/nexus/nexus.controller.js

Summary

Maintainability
A
0 mins
Test Coverage
(function() {
  'use strict';

  function NexusController(NexusService) {
    this.service = NexusService;
  }

  angular.module('pattyApp.nexus')
    .controller('NexusController', NexusController);
})();