mirror of
https://github.com/wader/fq.git
synced 2024-11-24 11:16:09 +03:00
16 lines
295 B
Go
16 lines
295 B
Go
package raw
|
|
|
|
import (
|
|
"github.com/wader/fq/format"
|
|
"github.com/wader/fq/pkg/decode"
|
|
"github.com/wader/fq/pkg/interp"
|
|
)
|
|
|
|
func init() {
|
|
interp.RegisterFormat(decode.Format{
|
|
Name: format.RAW,
|
|
Description: "Raw bits",
|
|
DecodeFn: func(d *decode.D, _ any) any { return nil },
|
|
})
|
|
}
|