增加交并计算功能

This commit is contained in:
algotao
2025-11-05 16:41:06 +08:00
parent 869bae0a9e
commit 44d9206b9f
10 changed files with 950 additions and 12 deletions

View File

@@ -25,6 +25,10 @@ func Run(args ...string) error {
return RunHitTest(args...)
case "info":
return RunInfo(args...)
case "and":
return RunAnd(args...)
case "or":
return RunOr(args...)
default:
err := fmt.Errorf(`unknown command "%s"`+"\n"+`Run 'bloomtool help' for usage`, name)
slog.Warn(err.Error())