git.m455.casa

ruth

clone url: git://git.m455.casa/ruth


src/config.rkt

1 #lang racket/base
2
3 (provide (all-defined-out))
4
5 (define config
6 (hash 'host "127.0.0.1"
7 'port 6667
8 'ssl #f
9 'pass #f
10 'nickname "ruth" ;; This one shows up in chat and can be registered
11 'username "m455s-bot" ;; This one shows up in join and leave messages
12 'realname "m455s-bot" ;; This one shows up somewhere?
13 'channels '("#tildetown"
14 "#oulipo"
15 "#bots")))
16