helper for FastAPI Users to create a super user code example
Example: helper for FastAPI Users to create a super user
superuser = await fastapi_users.create_user(
UserCreate(
email="[email protected]",
password="guinevere",
is_superuser=True,
)
)