elliotchance/gedcom

View on GitHub
object_mapper.go

Summary

Maintainability
A
0 mins
Test Coverage
package gedcom

// ObjectMapper allows objects to be represented a map. This is important when
// serializing and examining objects.
type ObjectMapper interface {
    ObjectMap() map[string]interface{}
}