Markov implementation

This commit is contained in:
2024-10-22 00:01:19 -06:00
parent 44fc4e8dd1
commit 0406e5cbf7
2 changed files with 118 additions and 2 deletions

View File

@ -29,11 +29,16 @@ var (
},
},
},
{
Name: "markov",
Description: "Testing markov chains.",
},
}
commandHandlers = map[string]func(s *discordgo.Session, i *discordgo.InteractionCreate){
"ping": command.PingCommand,
"hs": command.HsCommand,
"ping": command.PingCommand,
"hs": command.HsCommand,
"markov": command.MarkovCommand,
}
)