diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2023-04-16 09:53:41 -0500 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-04-22 22:40:12 +0200 |
commit | 2ed7a741ff9eca1dd3fe9e94cdcfe4f365b74ff2 (patch) | |
tree | 2e2b327605ce534ca18e3ff04d0df2a7628ee5a1 /models/models.go | |
parent | 8ced001d82b59f353c33ad34ca0c79313eef41af (diff) | |
download | aerc-2ed7a741ff9eca1dd3fe9e94cdcfe4f365b74ff2.tar.gz |
directory: remove attributes field
Remove the unused field Attributes
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'models/models.go')
-rw-r--r-- | models/models.go | 3 |
1 files changed, 1 insertions, 2 deletions
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 { |