mirror of
https://github.com/XRPLF/clio.git
synced 2025-12-06 09:18:02 +00:00
In this PR: 1 We create a golang grpc client to request data from rippled 2 We store the data into the specific place 3 Add unittests 4 Create build script, the build can be initiated by set conan option `snapshot` being true. Please ignore the grpc server part. It will be implemented in importing tool.
24 lines
594 B
Modula-2
24 lines
594 B
Modula-2
module xrplf/clio/clio_snapshot
|
|
|
|
go 1.22
|
|
|
|
toolchain go1.22.11
|
|
|
|
require (
|
|
github.com/golang/mock v1.6.0
|
|
github.com/spf13/pflag v1.0.6
|
|
github.com/stretchr/testify v1.10.0
|
|
google.golang.org/grpc v1.69.4
|
|
google.golang.org/protobuf v1.36.3
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/net v0.30.0 // indirect
|
|
golang.org/x/sys v0.26.0 // indirect
|
|
golang.org/x/text v0.19.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|