habulaj commited on
Commit
8c9241f
·
verified ·
1 Parent(s): 6fc14a5

Update routes/stylist.py

Browse files
Files changed (1) hide show
  1. routes/stylist.py +3 -0
routes/stylist.py CHANGED
@@ -28,6 +28,9 @@ SUPABASE_HEADERS = {
28
  logging.basicConfig(level=logging.INFO)
29
  logger = logging.getLogger(__name__)
30
 
 
 
 
31
  def verify_token(user_token: str) -> str:
32
  headers = {
33
  "Authorization": f"Bearer {user_token}",
 
28
  logging.basicConfig(level=logging.INFO)
29
  logger = logging.getLogger(__name__)
30
 
31
+ class UserIDRequest(BaseModel):
32
+ user_id: str
33
+
34
  def verify_token(user_token: str) -> str:
35
  headers = {
36
  "Authorization": f"Bearer {user_token}",