blob: a0dd3fa88d5c38de1aa8329f12f3b35ca38e4d85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|