diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-25 20:10:07 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-25 20:10:07 -0400 |
| commit | 41039b36ec75467076ada2bb0f6f7866eafaea09 (patch) | |
| tree | fb5733c9cd64c7aa8f3014193cb17011b0dfbbf5 /go.mod | |
| parent | 1f19f33e45791ea59aed048796fc68672c6723a5 (diff) | |
feat: Main Page to search for man pages
Added a main index page that uses HTMX to search for man pages and
place the contents on the page.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +module manpage + +go 1.26.1 + +require modernc.org/sqlite v1.50.0 + +require ( + github.com/dustin/go-humanize v1.0.1 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/ncruces/go-strftime v1.0.0 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect + golang.org/x/sys v0.42.0 // indirect + modernc.org/libc v1.72.0 // indirect + modernc.org/mathutil v1.7.1 // indirect + modernc.org/memory v1.11.0 // indirect +) |
