Ocean/ConfigurationDB/Scheme.go

8 lines
165 B
Go
Raw Permalink Normal View History

package ConfigurationDB
2015-06-17 15:44:52 +00:00
// The type for a configuration entry.
type ConfigurationDBEntry struct {
Name string `bson:"Name"`
Value string `bson:"Value"`
}