Spaces:
No application file
No application file
Update get_env_vars.py
Browse files- tools/get_env_vars.py +7 -0
tools/get_env_vars.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""Template for custom function or Pydantic model."""
|
2 |
+
|
3 |
+
import os
|
4 |
+
|
5 |
+
def get_env_vars() -> dict:
|
6 |
+
"""Get the environment variables."""
|
7 |
+
return dict(os.environ())
|