A basic twitch chat bot in Julia Programming Language.
- Add your bot function in the
src/Bot.jl
like below:-
function mybot(admin, sndr, args...)
# process the args for the reply
"@$(sndr) Reply from mybot"
end
- Add entry to the
botFnTbl
in thesrc/Bot.jl
botFnTbl = Dict(
"!weather" => weather,
"!hi" => hi,
"!mybot" => mybot
)