Refactor kafka to pure Go (franz-go), fix DBC stubs, update Dockerfile

This commit is contained in:
Chris Rai
2026-01-31 00:05:47 -05:00
parent fbb820d7b3
commit b5bec57dfa
776 changed files with 18945 additions and 2052 deletions

29
pkg/can-go/go.mod Normal file
View File

@@ -0,0 +1,29 @@
module github.com/fiskerinc/cloud-services/pkg/can-go
go 1.24.0
require (
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/fatih/color v1.15.0
github.com/golang/mock v1.7.0-rc.1
github.com/shurcooL/go-goon v0.0.0-20210110234559-7585751d9a17
go.uber.org/goleak v1.3.0
golang.org/x/net v0.47.0
golang.org/x/sync v0.18.0
golang.org/x/sys v0.38.0
golang.org/x/tools v0.38.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gotest.tools/v3 v3.5.1
)
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/shurcooL/go v0.0.0-20200502201357-93f07166e636 // indirect
github.com/stretchr/testify v1.10.0 // indirect
golang.org/x/mod v0.29.0 // indirect
)