mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-19 19:41:06 +00:00
* fix: make patch list registry-only * feat: add patch command progress logs * fix: address review feedback for PR #921
9 lines
143 B
Go
9 lines
143 B
Go
package engine
|
|
|
|
func plural(count int, singular string, pluralForm string) string {
|
|
if count == 1 {
|
|
return singular
|
|
}
|
|
return pluralForm
|
|
}
|