mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-14 08:02:17 +00:00
20 lines
288 B
Go
20 lines
288 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/Fluffy-Bean/lynxie/app"
|
|
"github.com/Fluffy-Bean/lynxie/commands"
|
|
)
|
|
|
|
func main() {
|
|
a := app.NewApp(app.Config{
|
|
Token: os.Getenv("TOKEN"),
|
|
Prefix: "?",
|
|
})
|
|
|
|
commands.RegisterMetaCommands(a)
|
|
commands.RegisterTinyfoxCommands(a)
|
|
|
|
a.Run()
|
|
}
|