初始化

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
scanner.go Normal file
View File

@@ -0,0 +1,8 @@
package main
import "view/service"
// Scanner 是 service.Scanner 的兼容别名,新业务实现位于 service 目录。
type Scanner = service.Scanner
func wildcardMatch(pattern, rel string) bool { return service.MatchExcludedPattern(pattern, rel) }