File: const.go

package info (click to toggle)
golang-github-go-crypt-crypt 0.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 516 kB
  • sloc: makefile: 4
file content (9 lines) | stat: -rw-r--r-- 179 bytes parent folder | download
1
2
3
4
5
6
7
8
9
package encoding

const (
	// Delimiter rune for all encodings.
	Delimiter = rune('$')

	// DelimiterStr is the string variation of Delimiter.
	DelimiterStr = string(Delimiter)
)