mirror of https://github.com/portainer/portainer
9 lines
239 B
JavaScript
9 lines
239 B
JavaScript
|
import angular from 'angular';
|
||
|
import controller from './kubectl-shell.controller';
|
||
|
import './kubectl-shell.css';
|
||
|
|
||
|
angular.module('portainer.kubernetes').component('kubectlShell', {
|
||
|
templateUrl: './kubectl-shell.html',
|
||
|
controller,
|
||
|
});
|