form.go 366 B

1234567891011121314
  1. // Copyright 2014 Alvaro J. Genial. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Package form implements encoding and decoding of application/x-www-form-urlencoded data.
  5. package form
  6. const (
  7. implicitKey = "_"
  8. omittedKey = "-"
  9. defaultDelimiter = '.'
  10. defaultEscape = '\\'
  11. )