summaryrefslogtreecommitdiff
path: root/cli/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli/__init__.py')
-rw-r--r--cli/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/__init__.py b/cli/__init__.py
index c6f8f27..e7d137f 100644
--- a/cli/__init__.py
+++ b/cli/__init__.py
@@ -3,8 +3,9 @@ import os
from .base import cli
from .build import build
+from .serve import serve
-__all__ = [cli, build]
+__all__ = [cli, build, serve]
# ugly workaround to avoid build failures in Python 3.8
if "NETLIFY" not in os.environ: