~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/messages/interfaces/webservice.py

Merged fix-retest-colorize into redo-read-only-transactions-in-buildmaster.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
"""All the interfaces that are exposed through the webservice.
5
5
 
6
6
There is a declaration in ZCML somewhere that looks like:
7
 
  <webservice:register module="canonical.launchpad.interfaces.webservice" />
 
7
  <webservice:register module="lp.patchwebservice" />
8
8
 
9
9
which tells `lazr.restful` that it should look for webservice exports here.
10
10
"""
14
14
    'IMessage',
15
15
    ]
16
16
 
17
 
from canonical.launchpad.interfaces import _schema_circular_imports
 
17
from lp import _schema_circular_imports
18
18
from lp.services.messages.interfaces.message import (
19
19
    IMessage,
20
20
    )