初始化

This commit is contained in:
李琦
2026-08-11 19:07:05 +08:00
commit d2aeb13a09
94 changed files with 8704 additions and 0 deletions

8
git.go Normal file
View File

@@ -0,0 +1,8 @@
package main
import "view/service"
// GitAnalyzer 是 service.GitService 的兼容别名。
type GitAnalyzer = service.GitService
func shortHash(s string) string { return service.ShortHash(s) }