~allenap/maas/rpc-give-shared-secret-to-accepted-cluster

« back to all changes in this revision

Viewing changes to twisted/plugins/maasps.py

  • Committer: Julian Edwards
  • Date: 2012-01-23 18:02:19 UTC
  • mto: This revision was merged to the branch mainline in revision 53.
  • Revision ID: julian.edwards@canonical.com-20120123180219-59j52mfv1ssstzc1
start the TAP for the provisioning server

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2012 Canonical Ltd.  This software is licensed under the
 
2
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
from __future__ import (
 
5
    absolute_import,
 
6
    print_function,
 
7
    unicode_literals,
 
8
    )
 
9
 
 
10
"""Twisted Application Plugin for the Maas provisioning server."""
 
11
 
 
12
__metaclass__ = type
 
13
__all__ = []
 
14
 
 
15
 
 
16
from provisioningserver.plugin import ProvisioningServiceMaker
 
17
 
 
18
# Construct objects which *provide* the relevant interfaces. The name of
 
19
# these variables is irrelevant, as long as there are *some* names bound
 
20
# to # providers of IPlugin and IServiceMaker.
 
21
 
 
22
service = ProvisioningServiceMaker(...) # TODO: finish