summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-10-19 10:09:46 +0300
committerLars Wirzenius <liw@liw.fi>2018-10-19 10:09:46 +0300
commit479a267173a93be604102746be94b9a64fcb7330 (patch)
tree3fa959aa113c574faa36d83d880233fa7934432d
parent34c7431562b14775f883f19bb43c11762be22050 (diff)
downloadmuck-poc-479a267173a93be604102746be94b9a64fcb7330.tar.gz
Add: muck/__init__.py
-rw-r--r--muck/__init__.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/muck/__init__.py b/muck/__init__.py
new file mode 100644
index 0000000..16bd12f
--- /dev/null
+++ b/muck/__init__.py
@@ -0,0 +1,18 @@
+# Copyright (C) 2018 Lars Wirzenius
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+from .exc import Error
+from .change import Change, CreateChange, UpdateChange, DeleteChange
+from .mem import MemoryStore