Update app.py
Browse files
app.py
CHANGED
@@ -13,8 +13,8 @@ app = FastAPI()
|
|
13 |
|
14 |
imagekit = ImageKit(
|
15 |
public_key=os.environ.get("public_key"),
|
16 |
-
private_key=private_key,
|
17 |
-
url_endpoint=url_endpoint
|
18 |
)
|
19 |
|
20 |
@app.get("/")
|
|
|
13 |
|
14 |
imagekit = ImageKit(
|
15 |
public_key=os.environ.get("public_key"),
|
16 |
+
private_key=os.environ.get("private_key"),
|
17 |
+
url_endpoint=os.environ.get("url_endpoint")
|
18 |
)
|
19 |
|
20 |
@app.get("/")
|