1234567891011121314151617 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- const IMiddleToken = require('./tokens').IMiddleToken;
- module.exports = [
- {
- id: '@jupyterlab/example-federated-middle',
- autoStart: true,
- provides: IMiddleToken,
- activate: function (app) {
- console.log('JupyterLab extension middle is activated!');
- console.log(app.commands);
- return 'hello';
- }
- }
- ];
|