mirror of
https://github.com/fluffle/goirc
synced 2025-05-12 10:41:42 +00:00
Make parseLine public by renaming it to ParseLine
This commit is contained in:
parent
7711182a72
commit
8f2ab20f4f
5 changed files with 45 additions and 45 deletions
|
@ -282,7 +282,7 @@ func (conn *Conn) recv() {
|
|||
s = strings.Trim(s, "\r\n")
|
||||
logging.Debug("<- %s", s)
|
||||
|
||||
if line := parseLine(s); line != nil {
|
||||
if line := ParseLine(s); line != nil {
|
||||
line.Time = time.Now()
|
||||
conn.in <- line
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue