togo/_testdata/test.toml.go
jolheiser e8a896fbac
Initial commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-04-08 23:58:22 -05:00

15 lines
307 B
Go

package testdata
type T struct {
Integer int `toml:"integer" `
Float float64 `toml:"float" `
Owner Owner `toml:"owner" `
Title string `toml:"title" `
}
type Owner struct {
DOB string `toml:"dob" `
Organization string `toml:"organization" `
Bio string `toml:"Bio" `
}