diff --git a/eventstore/cmd/eventstore/main.go b/eventstore/cmd/eventstore/main.go index 0ee2c3d..e2be35e 100644 --- a/eventstore/cmd/eventstore/main.go +++ b/eventstore/cmd/eventstore/main.go @@ -22,7 +22,7 @@ var db eventstore.Store var app = &cli.Command{ Name: "eventstore", Usage: "a CLI for all the eventstore backends", - UsageText: "eventstore -d ./data/sqlite ...", + UsageText: "eventstore -d ./data ...", Flags: []cli.Flag{ &cli.StringFlag{ Name: "store", diff --git a/khatru/README.md b/khatru/README.md index a8c190a..3f57e0d 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, [sqlite](https://pkg.go.dev/fiatjaf.com/nostr/eventstore/lmdb): +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): ```go db := lmdb.LMDBackend{Path: "/tmp/khatru-lmdb-tmp"}