From 455d7fcefee4cc95c4886d7c30a7809f7c54b733 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Tue, 13 Jan 2026 07:22:17 -0300 Subject: [PATCH] khatru: maybe fix links on readme. --- khatru/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/khatru/README.md b/khatru/README.md index 3f57e0d..2cefb1b 100644 --- a/khatru/README.md +++ b/khatru/README.md @@ -108,7 +108,7 @@ func main() { ### But I don't want to write my own database! -Fear no more. Using the https://fiatjaf.com/nostr/eventstore module you get a bunch of compatible databases out of the box and you can just plug them into your relay. For example, [lmdb](https://pkg.go.dev/fiatjaf.com/nostr/eventstore/lmdb): +Fear no more. Using the [`fiatjaf.com/nostr/eventstore`](../eventstore) module you get a bunch of compatible databases out of the box and you can just plug them into your relay. For example, [`lmdb`](../eventstore/lmdb): ```go db := lmdb.LMDBackend{Path: "/tmp/khatru-lmdb-tmp"} @@ -121,7 +121,7 @@ Fear no more. Using the https://fiatjaf.com/nostr/eventstore module you get a bu ### But I don't want to write a bunch of custom policies! -Fear no more. We have a bunch of common policies written in the `fiatjaf.com/nostr/khatru/policies` package and also a handpicked selection of base sane defaults, which you can apply with: +Fear no more. We have a bunch of common policies written in the [`fiatjaf.com/nostr/khatru/policies`](policies) package and also a handpicked selection of base sane defaults, which you can apply with: ```go policies.ApplySaneDefaults(relay)