github.com/makyo/juju@v0.0.0-20160425123129-2608902037e9/provider/dummy/init.go (about)

     1  // Copyright 2015 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package dummy
     5  
     6  import (
     7  	dummystorage "github.com/juju/juju/storage/provider/dummy"
     8  	"github.com/juju/juju/storage/provider/registry"
     9  )
    10  
    11  func init() {
    12  	registry.RegisterEnvironStorageProviders("dummy", "dummy")
    13  	registry.RegisterProvider("dummy", &dummystorage.StorageProvider{})
    14  }