github.com/jshiv/can-go@v0.2.1-0.20210224011015-069e90e90bdf/pkg/dbc/file.go (about) 1 package dbc 2 3 // File is a parsed DBC source file. 4 type File struct { 5 // Name of the file. 6 Name string 7 // Data contains the raw file data. 8 Data []byte 9 // Defs in the file. 10 Defs []Def 11 }