mirror of https://github.com/portainer/portainer
13 lines
255 B
JavaScript
13 lines
255 B
JavaScript
|
import controller from './nomadLogViewerController';
|
||
|
|
||
|
export const nomadLogViewer = {
|
||
|
templateUrl: './nomadLogViewer.html',
|
||
|
controller,
|
||
|
bindings: {
|
||
|
stderrLog: '<',
|
||
|
stdoutLog: '<',
|
||
|
resourceName: '<',
|
||
|
logCollectionChange: '<',
|
||
|
},
|
||
|
};
|