feat: add vidu video channel

This commit is contained in:
feitianbubu
2025-07-23 10:22:52 +08:00
parent e162b9c169
commit 352da66bd1
6 changed files with 302 additions and 1 deletions

View File

@@ -69,6 +69,12 @@ func testChannel(channel *model.Channel, testModel string) testResult {
newAPIError: nil,
}
}
if channel.Type == constant.ChannelTypeVidu {
return testResult{
localErr: errors.New("vidu channel test is not supported"),
newAPIError: nil,
}
}
w := httptest.NewRecorder()
c, _ := gin.CreateTestContext(w)