8 lines
165 B
Go
8 lines
165 B
Go
package ConfigurationDB
|
|
|
|
// The type for a configuration entry.
|
|
type ConfigurationDBEntry struct {
|
|
Name string `bson:"Name"`
|
|
Value string `bson:"Value"`
|
|
}
|