This commit is contained in:
des
2026-02-25 20:10:41 +08:00
parent 4cab2f6ff3
commit 657dc7c3a6
4 changed files with 55 additions and 4 deletions

6
srv/cmd/tool/cfg.go Normal file
View File

@@ -0,0 +1,6 @@
package tool
func Karmaforge[T any](params ...any) *T {
var result T
return &result
}