diff --git a/internal/parsers/elf/model.go b/internal/parsers/elf/model.go index a8e7960..28806c4 100644 --- a/internal/parsers/elf/model.go +++ b/internal/parsers/elf/model.go @@ -20,12 +20,12 @@ type Report struct { type Case struct { Binders []Binder `mapstructure:"binders"` - Context *string `mapstructure:"context"` - Depths *int `mapstructure:"depths"` - Code *string `mapstructure:"code"` - Plain *int `mapstructure:"plain"` - Weighed *float64 `mapstructure:"weighed"` - Detail *string `mapstructure:"detail"` + Context string `mapstructure:"context"` + Depths int `mapstructure:"depths"` + Code string `mapstructure:"code"` + Plain int `mapstructure:"plain"` + Weighed float64 `mapstructure:"weighed"` + Detail string `mapstructure:"detail"` SimilarityRate float64 `mapstructure:"similarity_rate"` Sources []Source `mapstructure:"srcs"` }