mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
10 lines
241 B
Go
10 lines
241 B
Go
|
/*
|
||
|
Package fastjson provides fast JSON parsing.
|
||
|
|
||
|
Arbitrary JSON may be parsed by fastjson without the need for creating structs
|
||
|
or for generating go code. Just parse JSON and get the required fields with
|
||
|
Get* functions.
|
||
|
|
||
|
*/
|
||
|
package fastjson
|