mirror of https://github.com/velour/catbase.git
gpt: rename directory
This commit is contained in:
parent
43eda811eb
commit
92ce4979b4
4
main.go
4
main.go
|
@ -4,6 +4,7 @@ package main
|
|||
|
||||
import (
|
||||
"flag"
|
||||
"github.com/velour/catbase/plugins/gpt"
|
||||
"github.com/velour/catbase/plugins/pagecomment"
|
||||
"github.com/velour/catbase/plugins/talker"
|
||||
"github.com/velour/catbase/plugins/tappd"
|
||||
|
@ -19,7 +20,6 @@ import (
|
|||
"github.com/velour/catbase/bot/msg"
|
||||
"github.com/velour/catbase/connectors/discord"
|
||||
"github.com/velour/catbase/plugins/giphy"
|
||||
"github.com/velour/catbase/plugins/gpt3"
|
||||
"github.com/velour/catbase/plugins/last"
|
||||
"github.com/velour/catbase/plugins/mayi"
|
||||
"github.com/velour/catbase/plugins/quotegame"
|
||||
|
@ -135,7 +135,7 @@ func main() {
|
|||
b.AddPlugin(roles.New(b))
|
||||
b.AddPlugin(twitch.New(b))
|
||||
b.AddPlugin(pagecomment.New(b))
|
||||
b.AddPlugin(gpt3.New(b))
|
||||
b.AddPlugin(gpt.New(b))
|
||||
b.AddPlugin(secrets.New(b))
|
||||
b.AddPlugin(mayi.New(b))
|
||||
b.AddPlugin(giphy.New(b))
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package gpt3
|
||||
package gpt
|
||||
|
||||
import (
|
||||
"context"
|
|
@ -1,4 +1,4 @@
|
|||
package gpt3
|
||||
package gpt
|
||||
|
||||
import (
|
||||
"bytes"
|
Loading…
Reference in New Issue