mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-06 19:19:50 +08:00
10 lines
112 B
Python
10 lines
112 B
Python
# flake8: noqa
|
|
import sys
|
|
|
|
try:
|
|
from fastapi_users import FastAPIUsers
|
|
except:
|
|
sys.exit(1)
|
|
|
|
sys.exit(0)
|