mirror of
https://github.com/arnaucube/goBlockchainDataAnalysis.git
synced 2026-02-06 19:26:41 +01:00
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
'use strict';
|
|
|
|
angular.module('app.sankey', ['ngRoute'])
|
|
|
|
.config(['$routeProvider', function($routeProvider) {
|
|
$routeProvider.when('/sankey', {
|
|
templateUrl: 'views/sankey/sankey.html',
|
|
controller: 'SankeyCtrl'
|
|
});
|
|
}])
|
|
|
|
.controller('SankeyCtrl', function($scope, $http, $routeParams) {
|
|
|
|
|
|
});
|