summaryrefslogtreecommitdiff
path: root/cli/__init__.py
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-05-17 12:26:14 +0200
committerYuval Adam <_@yuv.al>2024-05-18 13:12:23 +0200
commit1a34d1bbde800d540c4e3f1e3dbe22678903ad86 (patch)
tree7a6ca72c2e313a2f4a3527239014bb59a9159608 /cli/__init__.py
parentd9901fe020a419b40349ee9565fe1daa1bd225bd (diff)
Migrate all scripts to poetry
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: