6 lines
90 B
Python
6 lines
90 B
Python
import os
|
|
|
|
class Config:
|
|
JWT_SECRET_KEY = os.urandom(69).hex()
|
|
DEBUG = False
|