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