This commit is contained in:
2025-04-17 00:10:46 +08:00
parent 52bfd05b80
commit 26d183f4c9
8 changed files with 94 additions and 9 deletions

14
internal/plugin/const.go Normal file
View File

@@ -0,0 +1,14 @@
package plugin
var (
AllSrvMethods []SrvMethod
)
type SrvMethod struct {
PkgName string
ServiceName string
MethodName string
Comment string
In string
Out string
}