初始化提交

This commit is contained in:
2026-04-07 22:44:49 +08:00
commit c47a39b2b3
10 changed files with 180 additions and 0 deletions

10
internal/tools/index.go Normal file
View File

@@ -0,0 +1,10 @@
package tools
import "fmt"
func Check(err error, msg string) {
if err != nil {
fmt.Println(msg, err)
panic(err)
}
}