diff --git a/dopple/__init__.py b/dopple/__init__.py index bf03ea2..2330a60 100644 --- a/dopple/__init__.py +++ b/dopple/__init__.py @@ -1 +1,8 @@ -from .dopple import main # noqa: F401 +from .dopple import ( # noqa: F401 + DEFAULT_BACKEND_PATH, + DEFAULT_PROXY_URL, + Proxy, + main, + run, + run_daemon, +) diff --git a/newsfragments/10.feature.rst b/newsfragments/10.feature.rst new file mode 100644 index 0000000..d4472cb --- /dev/null +++ b/newsfragments/10.feature.rst @@ -0,0 +1,2 @@ +Expose some basic functions and constants. +This change is needed to make dopple usable as a library.