mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-19 09:54:53 +00:00
Add Ping, Debug and Animal commands
This commit is contained in:
parent
2f30bec05c
commit
f9526ba5d4
6 changed files with 252 additions and 2 deletions
15
main.go
15
main.go
|
@ -1,9 +1,20 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/Fluffy-Bean/lynxie/app"
|
||||
"github.com/Fluffy-Bean/lynxie/commands"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Println("Lynxie time")
|
||||
a := app.NewApp(app.Config{
|
||||
Token: os.Getenv("TOKEN"),
|
||||
Prefix: "?",
|
||||
})
|
||||
|
||||
commands.RegisterMetaCommands(a)
|
||||
commands.RegisterTinyfoxCommands(a)
|
||||
|
||||
a.Run()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue