ChiragPatankar commited on
Commit
bf46498
·
verified ·
1 Parent(s): 31775f7

Upload app/middleware/__init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app/middleware/__init__.py +13 -0
app/middleware/__init__.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Middleware for authentication, rate limiting, etc.
3
+ """
4
+ from app.middleware.auth import verify_tenant_access, get_tenant_from_token, require_auth
5
+
6
+ __all__ = [
7
+ "verify_tenant_access",
8
+ "get_tenant_from_token",
9
+ "require_auth",
10
+ ]
11
+
12
+
13
+