Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bsock.py « bsock « bareos - github.com/bareos/python-bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51dd59d2076f9be395a524c0c2d10eac2a225543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
Communicates with the bareos-director

Legacy, use DirectorConsole instead.
"""

from   bareos.bsock.directorconsole import DirectorConsole

class BSock(DirectorConsole):

    def __init__(self, *args, **kwargs):
        super(BSock, self).__init__(*args, **kwargs)