You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.go 354B

123456789101112131415161718
  1. // Copyright (c) 2012-2014 Jeremy Latt
  2. // Copyright (c) 2014-2015 Edmund Huber
  3. // Copyright (c) 2016- Daniel Oaks <daniel@danieloaks.net>
  4. // released under the MIT license
  5. package irc
  6. import "fmt"
  7. const (
  8. SEM_VER = "0.1.0-unreleased"
  9. CRLF = "\r\n"
  10. MAX_REPLY_LEN = 512 - len(CRLF)
  11. )
  12. var (
  13. VER = fmt.Sprintf("oragono-%s", SEM_VER)
  14. )