github.com/GeniusesGroup/libgo@v0.0.0-20220929090155-5ff932cb408e/uri/const.go (about) 1 /* For license and copyright information please see the LEGAL file in the code repository */ 2 3 package uri 4 5 // Some default values 6 const ( 7 SP byte = ' ' // <US-ASCII SP, space (32)> 8 Colon byte = ':' 9 AtSign byte = '@' 10 NumberSign byte = '#' 11 Comma byte = ',' 12 Question byte = '?' 13 Slash byte = '/' 14 Asterisk byte = '*' 15 )