diff options
author | 2020-06-19 15:51:41 +0200 | |
---|---|---|
committer | 2020-06-19 15:51:41 +0200 | |
commit | 21181c518cf41828917d36005b726f9452fde657 (patch) | |
tree | 38fab1b3c86a41383e48be6b2686d92efd86db62 /pkg/models/thread.go | |
download | archives-21181c518cf41828917d36005b726f9452fde657.tar.gz archives-21181c518cf41828917d36005b726f9452fde657.tar.bz2 archives-21181c518cf41828917d36005b726f9452fde657.zip |
Initial version
Signed-off-by: Max Magorsch <arzano@gentoo.org>
Diffstat (limited to 'pkg/models/thread.go')
-rw-r--r-- | pkg/models/thread.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/models/thread.go b/pkg/models/thread.go new file mode 100644 index 0000000..ebeff2a --- /dev/null +++ b/pkg/models/thread.go @@ -0,0 +1,8 @@ +package models + +type Threads []struct { + Id string + Headers map[string][]string + Subject string + Count int +} |