| 10 | ) |
| 11 | |
| 12 | type Serializer struct { |
| 13 | Entries []*Entry `toml:"entries"` |
| 14 | Endianness string `toml:"endianness"` |
| 15 | |
| 16 | converter binary.ByteOrder |
| 17 | } |
| 18 | |
| 19 | func (s *Serializer) Init() error { |
| 20 | switch s.Endianness { |
nothing calls this directly
no outgoing calls
no test coverage detected