pkg/storage: remove unused Config

This commit is contained in:
Hongchao Deng 2016-08-15 14:20:38 -07:00
parent 79ed7064ca
commit ed79925dd6

View File

@ -186,13 +186,3 @@ type Interface interface {
// Codec provides access to the underlying codec being used by the implementation.
Codec() runtime.Codec
}
// Config interface allows storage tiers to generate the proper storage.interface
// and reduce the dependencies to encapsulate storage.
type Config interface {
// Creates the Interface base on ConfigObject
NewStorage() (Interface, error)
// This function is used to enforce membership, and return the underlying type
GetType() string
}