Skip to content

Commit 8199655

Browse files
committed
fix(bridge.vm): update api endpoints output format
1 parent e70e1c0 commit 8199655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exts/ext-endpoints/src/233/main/kotlin/cc/unitmesh/endpoints/bridge/WebApiViewFunctionProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class WebApiViewFunctionProvider : ToolchainFunctionProvider {
3434

3535
val map = collectUrls(project, endpointsProviderList)
3636
val result =
37-
"Here is current project web ${map.size} api endpoints: ```\n" + map.joinToString("\n") { url ->
37+
"Here is current project web ${map.size} api endpoints: \n```\n" + map.joinToString("\n") { url ->
3838
url.method.joinToString("\n") {
3939
"$it - ${url.urlPath.toStringWithStars()}" + " (${
4040
UrlMappingElement.getContainingFileName(

0 commit comments

Comments
 (0)