oss_notebook_launcher.py 253 Bytes
Newer Older
Ivan Bogatyy's avatar
Ivan Bogatyy committed
1
2
3
4
5
6
7
8
9
10
"""Mini OSS launcher so we can build a py_binary for OSS."""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

from jupyter_core.command import main

if __name__ == '__main__':
  exit(main())