This commit is contained in:
bel
2023-10-24 21:09:02 -06:00
parent 21fed9437f
commit 5d0e7c9a3d
9 changed files with 42 additions and 40 deletions

View File

@@ -18,9 +18,9 @@ func LikeAfter(date string) Like {
}
}
func LikeAcc(pattern string) Like {
func LikeName(pattern string) Like {
return func(d Delta) bool {
return like(pattern, d.Account)
return like(pattern, d.Name)
}
}