...

Source file src/github.com/aws/smithy-go/encoding/json/constants.go

Documentation: github.com/aws/smithy-go/encoding/json

     1  package json
     2  
     3  const (
     4  	leftBrace  = '{'
     5  	rightBrace = '}'
     6  
     7  	leftBracket  = '['
     8  	rightBracket = ']'
     9  
    10  	comma = ','
    11  	quote = '"'
    12  	colon = ':'
    13  
    14  	null = "null"
    15  )
    16  

View as plain text