mirror of
https://github.com/niezhicheng/pveui.git
synced 2026-05-22 20:31:02 +08:00
10 lines
221 B
Python
10 lines
221 B
Python
from django.urls import path
|
|
from .views import GenerateFromSpecView, AISchemaSuggestView
|
|
|
|
urlpatterns = [
|
|
path('generate/', GenerateFromSpecView.as_view()),
|
|
path('ai-schema/', AISchemaSuggestView.as_view()),
|
|
]
|
|
|
|
|