blob: a47f602f8845dd8535f626cedf22be8e8bb2bbc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
"""Replication on top of PgQ."""
__pychecker__ = 'no-miximport'
import londiste.playback
import londiste.compare
import londiste.setup
import londiste.table_copy
import londiste.repair
import londiste.handler
from londiste.playback import *
from londiste.compare import *
from londiste.setup import *
from londiste.table_copy import *
from londiste.repair import *
from londiste.handler import *
__all__ = (
londiste.playback.__all__ +
londiste.compare.__all__ +
londiste.handler.__all__ +
londiste.setup.__all__ +
londiste.table_copy.__all__ +
londiste.repair.__all__ )
|