File: __init__.py

package info (click to toggle)
jupyter-server 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,844 kB
  • sloc: python: 12,331; makefile: 175; javascript: 72
file content (10 lines) | stat: -rw-r--r-- 197 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from .application import SimpleApp11


def _jupyter_server_extension_paths():
    return [
        {
            'module': 'simple_ext11.application',
            'app': SimpleApp11
        }
    ]