aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--worker/notmuch/lib/thread.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/worker/notmuch/lib/thread.go b/worker/notmuch/lib/thread.go
deleted file mode 100644
index 33bf872c..00000000
--- a/worker/notmuch/lib/thread.go
+++ /dev/null
@@ -1,15 +0,0 @@
-//go:build notmuch
-// +build notmuch
-
-package lib
-
-type ThreadNode struct {
- Uid string
- From string
- Subject string
- InQuery bool // is the msg included in the query
-
- Parent *ThreadNode
- NextSibling *ThreadNode
- FirstChild *ThreadNode
-}