The code changes in `config.go` update the CNL pattern to correctly match CNL messages. This update ensures accurate extraction of data from CNL messages and improves the overall functionality of the code.
53 lines
1.9 KiB
AMPL
53 lines
1.9 KiB
AMPL
module caatsm
|
|
|
|
go 1.22.5
|
|
|
|
require (
|
|
github.com/Khan/genqlient v0.7.0
|
|
github.com/ThreeDotsLabs/watermill v1.3.5
|
|
github.com/ThreeDotsLabs/watermill-nats/v2 v2.0.2
|
|
github.com/google/uuid v1.6.0
|
|
github.com/nats-io/nats.go v1.36.0
|
|
github.com/onsi/ginkgo/v2 v2.19.1
|
|
github.com/onsi/gomega v1.34.0
|
|
github.com/spf13/viper v1.19.0
|
|
go.uber.org/zap v1.27.0
|
|
golang.org/x/oauth2 v0.21.0
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
|
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/klauspost/compress v1.17.2 // indirect
|
|
github.com/lithammer/shortuuid/v3 v3.0.7 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/nats-io/nkeys v0.4.7 // indirect
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
|
github.com/oklog/ulid v1.3.1 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/sagikazarmark/locafero v0.4.0 // indirect
|
|
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
github.com/spf13/afero v1.11.0 // indirect
|
|
github.com/spf13/cast v1.6.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
github.com/vektah/gqlparser/v2 v2.5.11 // indirect
|
|
go.uber.org/multierr v1.10.0 // indirect
|
|
golang.org/x/crypto v0.23.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
|
|
golang.org/x/net v0.25.0 // indirect
|
|
golang.org/x/sys v0.21.0 // indirect
|
|
golang.org/x/text v0.15.0 // indirect
|
|
golang.org/x/tools v0.21.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|