mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-30 16:40:05 +08:00
13 lines
184 B
Python
13 lines
184 B
Python
# -*- coding: utf-8 -*-
|
|
import json
|
|
|
|
from main import app
|
|
|
|
|
|
def get_openapi_schema():
|
|
return json.dumps(app.openapi())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(get_openapi_schema())
|