diff --git a/aore/miscutils/bottlecl.py b/aore/miscutils/bottlecl.py index 371338a..efde598 100644 --- a/aore/miscutils/bottlecl.py +++ b/aore/miscutils/bottlecl.py @@ -8,6 +8,9 @@ class BottleCL(object): self._app = Bottle() self.init_routes() + def __call__(self, **kwargs): + self._app(**kwargs) + def init_routes(self): pass