diff options
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | ui.go | 8 |
2 files changed, 1 insertions, 9 deletions
@@ -1,6 +1,6 @@ module git.samanthony.xyz/pfc -go 1.20 +go 1.21 require github.com/charmbracelet/bubbletea v0.24.2 @@ -156,11 +156,3 @@ func fill(s []rune, c rune) { s[i] = c } } - -// min returns the lesser of x or y. -func min(x, y int) int { - if x < y { - return x - } - return y -} |