Update routes/hello.py
Browse files- routes/hello.py +2 -0
routes/hello.py
CHANGED
@@ -1,6 +1,8 @@
|
|
|
|
1 |
import stripe
|
2 |
from fastapi import APIRouter, HTTPException
|
3 |
from pydantic import BaseModel
|
|
|
4 |
|
5 |
router = APIRouter()
|
6 |
|
|
|
1 |
+
import os # <- Adicione esta linha no topo do arquivo
|
2 |
import stripe
|
3 |
from fastapi import APIRouter, HTTPException
|
4 |
from pydantic import BaseModel
|
5 |
+
import requests
|
6 |
|
7 |
router = APIRouter()
|
8 |
|