From 61c742eb35a8a030e430ad39b77eb4d430c982f0 Mon Sep 17 00:00:00 2001 From: rwxrob Date: Sun, 24 Apr 2022 09:21:35 -0400 Subject: [PATCH] Fix bonzai.Vars.Del interface --- bonzai.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonzai.go b/bonzai.go index 1598757..c35ca76 100644 --- a/bonzai.go +++ b/bonzai.go @@ -63,7 +63,7 @@ type Vars interface { Print() // (printed) Get(key string) string // accessor Set(key, val string) error // mutator - Del(key string) // destroyer + Del(key string) error // destroyer OverWrite(with string) error // safely replace all cache }