Skip to content
bootstrap.py 205 B
Newer Older
from ccserver.clients import Client


class BootstrapClient(Client):

    """ A bootstrap client connected to the cc-server.
    """

    ROLE = 'bootstrap'


Client.register_client_class(BootstrapClient)