yinbangzhong
2024-06-19 dd2c694c124c4a0f5b1d9c5a876337bd424d697f
docs/docs.go
@@ -360,6 +360,37 @@
                }
            }
        },
        "/api-sa/v1/audio/preLoadPath": {
            "get": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "音频自动加载路径"
                ],
                "summary": "音频自动加载路径",
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "allOf": [
                                {
                                    "$ref": "#/definitions/util.Response"
                                },
                                {
                                    "type": "object",
                                    "properties": {
                                        "data": {
                                            "$ref": "#/definitions/response.PreLoadPathResp"
                                        }
                                    }
                                }
                            ]
                        }
                    }
                }
            }
        },
        "/api-sa/v1/audio/process": {
            "post": {
                "produces": [
@@ -927,6 +958,14 @@
                }
            }
        },
        "response.PreLoadPathResp": {
            "type": "object",
            "properties": {
                "preLoadPath": {
                    "type": "string"
                }
            }
        },
        "util.Response": {
            "type": "object",
            "properties": {