From e6c7a5dfb08b67c9690eda56be2b9de319fb24a1 Mon Sep 17 00:00:00 2001 From: Sitt Guruvanich Date: Sun, 8 Dec 2024 15:58:45 +0700 Subject: [PATCH] chore: reference auth and pull commands in entry --- src/arise/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arise/__init__.py b/src/arise/__init__.py index cbd7b68..fffd5ce 100644 --- a/src/arise/__init__.py +++ b/src/arise/__init__.py @@ -11,8 +11,8 @@ # ************************************************************* ### Local modules ### -from arise.commands import build, clean, deploy, dashboard +from arise.commands import auth, build, clean, deploy, dashboard, pull -__all__ = ("build", "clean", "dashboard", "deploy") +__all__ = ("auth", "build", "clean", "dashboard", "deploy", "pull") __version__ = "0.2.3"