Files
byte-me/probe.go

19 lines
199 B
Go

package main
type Frame struct {
Key string
Bytes uint32
}
type File struct {
Path string
Data []Frame
}
func NewFile(path string) File {
return File{
Path: path,
Data: []Frame{},
}
}