diff options
Diffstat (limited to 'src/pgpmailman/rest/root.py')
| -rw-r--r-- | src/pgpmailman/rest/root.py | 14 |
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 |
