This commit is contained in:
Shreyas Goenka 2025-02-03 19:49:38 +01:00
parent 5e9d63280a
commit b076b750f1
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
2 changed files with 4 additions and 0 deletions

View File

View File

@ -110,4 +110,8 @@ func AddHandlers(server *testserver.Server) {
"token_type": "Bearer",
}, nil
})
server.Handle("POST /api/2.0/workspace-files/import-file/", func(r *http.Request) (any, error) {
return "{}", nil
})
}