summaryrefslogtreecommitdiff
path: root/utils/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/__init__.py')
-rw-r--r--utils/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/__init__.py b/utils/__init__.py
index 22d7058..3f41882 100644
--- a/utils/__init__.py
+++ b/utils/__init__.py
@@ -4,6 +4,15 @@ from typing import Annotated
from fastapi import Request, Header, Depends
import httpx
+from . import restricted_exec
+
+__all__ = [
+ 'restricted_exec',
+ 'get_avatar_urls',
+ 'get_client_host',
+ 'get_client_geo'
+]
+
def get_avatar_urls() -> list[str]:
path = Path("./static") / "avatars"