From 41039b36ec75467076ada2bb0f6f7866eafaea09 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sat, 25 Apr 2026 20:10:07 -0400 Subject: 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. --- go.mod | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 go.mod (limited to 'go.mod') diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..837c0520 --- /dev/null +++ b/go.mod @@ -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 +) -- cgit v1.2.3