Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vanwdai
/
dialogflowAPI
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c506a3f
dialogflowAPI
/
app
/
router.py
OnlyBiggg
'refactor'
5564ecb
about 1 month ago
raw
Copy download link
history
blame
196 Bytes
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from
fastapi
import
APIRouter
from
app.dialogflow.api.router
import
v1
as
dialogflow_v1
router = APIRouter()
router.include_router(dialogflow_v1)