summaryrefslogtreecommitdiff
path: root/src/pgpmailman/rest/root.py
diff options
context:
space:
mode:
authorJ08nY2017-06-02 16:33:20 +0200
committerJ08nY2017-06-02 16:35:03 +0200
commitecc08d6286a57fcd20e48f6142f5810058b890de (patch)
treec914d207421425031980574fcea4f76824dcfac5 /src/pgpmailman/rest/root.py
parentfb0202ba476d87648736a4546e34644c7e96b6aa (diff)
downloadmailman-pgp-ecc08d6286a57fcd20e48f6142f5810058b890de.tar.gz
mailman-pgp-ecc08d6286a57fcd20e48f6142f5810058b890de.tar.zst
mailman-pgp-ecc08d6286a57fcd20e48f6142f5810058b890de.zip
Diffstat (limited to 'src/pgpmailman/rest/root.py')
-rw-r--r--src/pgpmailman/rest/root.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/pgpmailman/rest/root.py b/src/pgpmailman/rest/root.py
new file mode 100644
index 0000000..69565d8
--- /dev/null
+++ b/src/pgpmailman/rest/root.py
@@ -0,0 +1,14 @@
+from mailman.rest.helpers import child
+from public import public
+
+
+@public
+class RESTRoot:
+
+ @child()
+ def lists(self, context, segments):
+ pass
+
+ @child()
+ def users(self, context, segments):
+ pass \ No newline at end of file