mirror of
https://github.com/mariocandela/beelzebub.git
synced 2025-07-01 18:47:26 -04:00

* Added dependency go-resty * Configured Parser to read plugin configurations * Add example ssh with ChatGPT plugin * Add client ChatBot * Improve logging * Add integration with plugin OpenAIChatGPT * Improve readme with ChatBot Example * Add contributed ChatGPT question * Refactoring * Refactoring and improve unit test
16 lines
368 B
Modula-2
16 lines
368 B
Modula-2
module beelzebub
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/gliderlabs/ssh v0.3.5
|
|
github.com/go-resty/resty/v2 v2.7.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/jarcoal/httpmock v1.2.0
|
|
github.com/rabbitmq/amqp091-go v1.5.0
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/stretchr/testify v1.8.1
|
|
golang.org/x/crypto v0.0.0-20220826181053-bd7e27e6170d
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|