This commit is contained in:
a 2024-05-15 12:41:54 -05:00
parent 3d92876961
commit 19922d6fc5
Signed by: a
GPG Key ID: 374BC539FE795AF0
1 changed files with 17 additions and 0 deletions

17
readme.md Normal file
View File

@ -0,0 +1,17 @@
# irc
ircv3 library
i had this thought that it might be possible to implement things like SASL auth, capabilities, etc, all as middleware
```
type Handler interface {
Handle(w MessageWriter, m *Event)
}
```
turns out its working so far.