mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-12 12:33:02 +00:00
11 lines
181 B
Python
11 lines
181 B
Python
import os
|
|
import sys
|
|
|
|
c.JupyterHub.services = [
|
|
{
|
|
'name': 'whoami',
|
|
'url': 'http://127.0.0.1:10101',
|
|
'command': [sys.executable, './whoami.py'],
|
|
}
|
|
]
|