summaryrefslogtreecommitdiff
path: root/modules/3-ibip.rkt
blob: 08d63caa59f9c841498f8ce47bd0a1ddbed977af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#lang racket/base
(require irc/bot irc/command)

; See https://git.teknik.io/Teknikode/IBIP

(define source "git.tx0.co/meep")

(on (and (command-is 'PRIVMSG)
         (suffix-is ".bots"))
    (reply (format "Reporting in! [Racket] ~a" source)))

(define-command (source)
  #:help "Display bot repo location"
  (reply source))