diff options
author | Runxi Yu <me@runxiyu.org> | 2024-12-08 21:34:30 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-12-08 21:34:30 +0800 |
commit | f86032e68213087b8f087245851b915b5f6acfa6 (patch) | |
tree | 33e617793050e7ed25a914a70da43e33f5ba4650 /main.go | |
parent | UID -> CID (diff) | |
download | meseircd-f86032e68213087b8f087245851b915b5f6acfa6.tar.gz meseircd-f86032e68213087b8f087245851b915b5f6acfa6.tar.zst meseircd-f86032e68213087b8f087245851b915b5f6acfa6.zip |
Server & Client should only have pointer receivers
Diffstat (limited to '')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ func main() { setupCapls() - self = Server{ + self = &Server{ conn: nil, SID: "001", Name: "irc.runxiyu.org", |