github.com/mwhudson/juju@v0.0.0-20160512215208-90ff01f3497f/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 }