Ocean/ConfigurationDB/Scheme.go
2015-06-17 17:44:52 +02:00

8 lines
165 B
Go

package ConfigurationDB
// The type for a configuration entry.
type ConfigurationDBEntry struct {
Name string `bson:"Name"`
Value string `bson:"Value"`
}