Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
BilalCode
/
TaskFlow
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ce26e0b
TaskFlow
/
src
/
api
/
__init__.py
BilalCode
taskflow todo app
310260a
6 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
207 Bytes
"""API routers package."""
from
.tasks
import
router
as
tasks_router
from
.auth
import
router
as
auth_router
from
.chat
import
router
as
chat_router
__all__ = [
"tasks_router"
,
"auth_router"
,
"chat_router"
]