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 297B

123456789101112
  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. const (
  7. SEM_VER = "oragono-0.1.0-unreleased"
  8. CRLF = "\r\n"
  9. MAX_REPLY_LEN = 512 - len(CRLF)
  10. )