5 lines
117 B
Python
5 lines
117 B
Python
|
"""Constants for the auth module."""
|
||
|
from datetime import timedelta
|
||
|
|
||
|
ACCESS_TOKEN_EXPIRATION = timedelta(minutes=30)
|