From 36fab33048a72c806c6f5913517e0b3affd8b170 Mon Sep 17 00:00:00 2001 From: Haelnorr Date: Sun, 11 Jan 2026 23:48:15 +1100 Subject: [PATCH] updated docs with links --- HWS.md | 12 +++++++----- HWSAuth.md | 12 +++++++----- JWT.md | 11 +++++++++-- 3 files changed, 23 insertions(+), 12 deletions(-) diff --git a/HWS.md b/HWS.md index fe4aa70..d1af954 100644 --- a/HWS.md +++ b/HWS.md @@ -1166,15 +1166,17 @@ Check that: ## See Also -- [hwsauth](./HWSAuth.md) - JWT authentication middleware +- [HWSAuth](./HWSAuth.md) - JWT authentication middleware +- [JWT](./JWT.md) - JWT token management - [hlog](./hlog.md) - Structured logging -- [jwt](./JWT.md) - JWT token management ## Links -- [Source Code](https://git.haelnorr.com/h/golib/hws) -- [Issue Tracker](https://git.haelnorr.com/h/golib/hws/issues) -- [Examples](https://git.haelnorr.com/h/golib/hws/tree/master/examples) +- [GoDoc](https://pkg.go.dev/git.haelnorr.com/h/golib/hws) - API documentation +- [Source Code](https://git.haelnorr.com/h/golib/hws) - Repository +- [Issue Tracker](https://git.haelnorr.com/h/golib/hws/issues) - Report bugs +- [Examples](https://git.haelnorr.com/h/golib/hws/tree/master/examples) - Code examples + diff --git a/HWSAuth.md b/HWSAuth.md index 737dcc3..253ce13 100644 --- a/HWSAuth.md +++ b/HWSAuth.md @@ -753,15 +753,17 @@ func changePasswordHandler( ## See Also -- [hws](./hws.md) - Web server framework -- [jwt](./JWT.md) - JWT token library +- [HWS](./HWS.md) - H Web Server framework +- [JWT](./JWT.md) - JWT token library - [env](./env.md) - Environment variable loading ## Links -- [Source Code](https://git.haelnorr.com/h/golib/hwsauth) -- [Issue Tracker](https://git.haelnorr.com/h/golib/hwsauth/issues) -- [Examples](https://git.haelnorr.com/h/golib/hwsauth/tree/master/examples) +- [GoDoc](https://pkg.go.dev/git.haelnorr.com/h/golib/hwsauth) - API documentation +- [Source Code](https://git.haelnorr.com/h/golib/hwsauth) - Repository +- [Issue Tracker](https://git.haelnorr.com/h/golib/hwsauth/issues) - Report bugs +- [Examples](https://git.haelnorr.com/h/golib/hwsauth/tree/master/examples) - Code examples + diff --git a/JWT.md b/JWT.md index a467ed4..682beba 100644 --- a/JWT.md +++ b/JWT.md @@ -624,6 +624,13 @@ If blacklist queries are slow: - Run cleanup more frequently - Consider partitioning the table by date -## API Reference +## See Also -See the [GoDoc documentation](https://pkg.go.dev/git.haelnorr.com/h/golib/jwt) for complete API reference. +- [HWSAuth](./HWSAuth.md) - JWT authentication middleware for HWS +- [HWS](./HWS.md) - H Web Server framework + +## Links + +- [GoDoc](https://pkg.go.dev/git.haelnorr.com/h/golib/jwt) - API documentation +- [Source Code](https://git.haelnorr.com/h/golib/jwt) - Repository +- [Issue Tracker](https://git.haelnorr.com/h/golib/jwt/issues) - Report bugs