5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-04 08:16:17 +00:00

10 lines
155 B
Go
Raw Normal View History

// +build gofuzz
package markdown
// Fuzz is to be used by https://github.com/dvyukov/go-fuzz
func Fuzz(data []byte) int {
Parse(data, nil)
return 0
}