UNPKG

generator-aspnetpostgresql

Version:

Yeoman generator for ASP.NET MVC Core apps with PostgreSQL support

21 lines (14 loc) 347 B
(function() { 'use strict'; angular .module('<%= namespace %>') .controller('controller', controller); controller.$inject = ['$location']; function controller($location) { /* jshint validthis:true */ var vm = this; vm.title = 'controller'; activate(); function activate() {} } })();