summaryrefslogtreecommitdiff
path: root/alot/buffers/__init__.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2018-06-19 10:40:07 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2018-06-19 22:08:36 +0100
commitf0105c37556116c07f9f30c1fe960ea9e67e7229 (patch)
tree8642317be8306ea7c18ad62ef9146f507df95f9f /alot/buffers/__init__.py
parentd19615d2ac5bb23aca9068ca8c7644f466ce0b48 (diff)
refactor buffers
This splits buffers.py, which contained all buffer classes, into several smaller files. issue #1226
Diffstat (limited to 'alot/buffers/__init__.py')
-rw-r--r--alot/buffers/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/alot/buffers/__init__.py b/alot/buffers/__init__.py
new file mode 100644
index 00000000..2b52a544
--- /dev/null
+++ b/alot/buffers/__init__.py
@@ -0,0 +1,10 @@
+# Copyright (C) 2011-2018 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
+
+from .buffer import Buffer
+from .bufferlist import BufferlistBuffer
+from .envelope import EnvelopeBuffer
+from .search import SearchBuffer
+from .taglist import TagListBuffer
+from .thread import ThreadBuffer