We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf2cc8 commit 8ba1920Copy full SHA for 8ba1920
src/main/kotlin/com/github/oldmegit/goframehelper/completion/go/CompletionApiTag.kt
@@ -43,7 +43,11 @@ class CompletionApiTag: CompletionBase() {
43
return null
44
}
45
46
+ // Check struct name is end with "Req" or "Res"
47
+ // GoFrame have removed the requirement for struct name to end with "Req" or "Res"
48
+ // https://github.com/gogf/gf/commit/3d4904eb3dc558aebca89146f846d9852f3e0694
49
private fun isValidStruct(): Boolean {
50
+ return true
51
val structType = getStructType()
52
if (structType == null) {
53
return false
0 commit comments