From 2ed7a741ff9eca1dd3fe9e94cdcfe4f365b74ff2 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Sun, 16 Apr 2023 09:53:41 -0500 Subject: directory: remove attributes field Remove the unused field Attributes Signed-off-by: Tim Culverhouse Acked-by: Robin Jarry --- models/models.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'models/models.go') diff --git a/models/models.go b/models/models.go index 6843398c..5caeb4d3 100644 --- a/models/models.go +++ b/models/models.go @@ -37,8 +37,7 @@ func (f Flags) Has(flags Flags) bool { } type Directory struct { - Name string - Attributes []string + Name string } type DirectoryInfo struct { -- cgit