Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
8
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
55e7678
fastapi_django_main_live
/
contbk
/
ai
/
src
/
main.py
kenken999
update
d548975
2 months ago
raw
Copy download link
history
blame
Safe
195 Bytes
from
src.services.user_service
import
UserService
def
main
():
user_service = UserService()
user_service.create_user(
"John Doe"
,
"john@example.com"
)
if
__name__ ==
"__main__"
:
main()