- soju raw connector with event playback and CHATHISTORY fallback - SQLite store with msgid de-dup and retention job - Mentions + Pushover + tuning; structured JSON logs - Summaries: concise, link-following, multi-line grouping - HTTP: /healthz, /ready, /tail, /trigger, /metrics - Docker: distroless, healthcheck, version metadata - Docs: README, CHANGELOG, compose
7 lines
129 B
Go
7 lines
129 B
Go
package ircclient
|
|
|
|
import "encoding/base64"
|
|
|
|
func base64Encode(b []byte) string {
|
|
return base64.StdEncoding.EncodeToString(b)
|
|
}
|