mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
* add query by MIME type to source.FileResolver Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * import stereoscope lib changes to find mime type - add bin cataloger - add bin parser - add mime type go utils - import new resolver Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> * add go std library code to unpack bin - keep them in their own (original) files - add note for "this code was copied from" - comment the lines the required changing Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com> Co-authored-by: Alex Goodman <alex.goodman@anchore.com>
19 lines
269 B
Go
19 lines
269 B
Go
//build:ignore
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"golang.org/x/net/html"
|
|
"golang.org/x/term"
|
|
)
|
|
|
|
var test = html.ErrBufferExceeded
|
|
|
|
func main() {
|
|
t := term.NewTerminal(os.Stdout, "foo")
|
|
t.Write([]byte("hello anchore"))
|
|
t.Write([]byte(fmt.Sprintf("%v", test)))
|
|
}
|