~james-page/ubuntu/saucy/juju-core/1.16.5

« back to all changes in this revision

Viewing changes to src/launchpad.net/juju-core/provider/provider.go

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-09-03 14:22:22 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130903142222-9mes2r8wqr0bs7lp
Tags: 1.13.3-0ubuntu1
New upstream point release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// Copyright 2013 Canonical Ltd.
2
2
// Licensed under the AGPLv3, see LICENCE file for details.
3
3
 
 
4
// The provider package provides utilities for environment
 
5
// provider implementations to use.
4
6
package provider
5
7
 
6
8
const (
10
12
        MAAS      = "maas"
11
13
        Azure     = "azure"
12
14
        OpenStack = "openstack"
 
15
        Manual    = "manual"
13
16
)