From cdd1be46a83f5c522d0da846092f0d3584a6b588 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Mon, 6 Nov 2023 12:14:37 -0700 Subject: [PATCH] drop unused --- pttodo/root.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pttodo/root.go b/pttodo/root.go index 1c0689c..b314959 100644 --- a/pttodo/root.go +++ b/pttodo/root.go @@ -12,11 +12,6 @@ type Root struct { Done []Todo } -func VerifyRootFromFile(p string) error { - _, err := NewRootFromFile(p) - return err -} - func NewRootFromFile(p string) (Root, error) { f, err := os.Open(p) if os.IsNotExist(err) {