mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-13 15:47:17 +03:00
- Renamed chat.Channel -> chat.Room - /ban works, supports IP also - /whois works - chat.User now accepts an Identifier interface rather than name - Tweaked rate limiting
14 lines
366 B
Go
14 lines
366 B
Go
/*
|
|
`chat` package is a server-agnostic implementation of a chat interface, built
|
|
with the intention of using with the intention of using as the backend for
|
|
ssh-chat.
|
|
|
|
This package should not know anything about sockets. It should expose io-style
|
|
interfaces and rooms for communicating with any method of transnport.
|
|
|
|
TODO: Add usage examples here.
|
|
|
|
*/
|
|
|
|
package chat
|