Files
ini/basic/types.go
T
amery 98f30cae6a basic: WIP
Signed-off-by: Alejandro Mery <amery@jpi.io>
2023-08-31 17:13:38 +00:00

24 lines
257 B
Go

package basic
// Document ...
type Document struct {
Global []Field
Sections []Section
}
// Section ...
type Section struct {
Name string
Key string
HadKey bool
Fields []Field
}
// Field ...
type Field struct {
Key string
Value string
}