commit 9dfab05a71797574fc9e318770700df7bf41d453
parent b667eea289dca777b741876c8f0a2ac4d7fcdc98
Author: lash <dev@holbrook.no>
Date: Mon, 2 Sep 2024 16:05:45 +0100
Correct gdbm tool in makefile for example
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/examples/gdbm/Makefile b/examples/gdbm/Makefile
@@ -3,7 +3,7 @@ TXTS = $(wildcard ./*.txt.orig)
%.vis:
go run ../../dev/asm $(basename $@).vis > $(basename $@).bin
- go run ../../dev/gdbm/main.go .
+ go run ../../dev/dbconvert/main.go .
all: $(INPUTS) $(TXTS)
diff --git a/resource/db.go b/resource/db.go
@@ -13,6 +13,8 @@ const (
// DbResource is a MenuResource that uses the given db.Db implementation as data retriever.
//
+// It implements the Resource interface.
+//
// The DbResource can resolve any db.DATATYPE_* if instructed to do so.
type DbResource struct {
*MenuResource