mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-19 19:25:53 +00:00
Implement snapshot import cmd `clio_snapshot --server --grpc_server 0.0.0.0:12345 --path <snapshot_path>` Implement snapshot range cmd `./clio_snapshot --range --path <snapshot_path>` Add LedgerHouses: It is responsible for reading/writing snapshot data Server: Start grpc server and ws server
25 lines
631 B
Modula-2
25 lines
631 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/gorilla/websocket v1.5.3
|
|
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
|
|
)
|