mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 02:15:28 +00:00
9 lines
232 B
Go
9 lines
232 B
Go
package output
|
|
|
|
import jsoniter "github.com/json-iterator/go"
|
|
|
|
// formatJSON formats the output for json based formatting
|
|
func (w *StandardWriter) formatJSON(output *ResultEvent) ([]byte, error) {
|
|
return jsoniter.Marshal(output)
|
|
}
|