pool/auctioneerrpc/go.mod
Oliver Gugger 7077c8b542
mod: make auctioneerrpc its own sub-module
To make it possible to replace the package in the server integration
tests, we declare the auctioneerrpc package as its own submodule. That
way we can just plug in the server version in the itest if we have changes in the
server proto that aren't merged to the client repo yet.
2021-01-22 16:36:18 +01:00

8 lines
140 B
Modula-2

module github.com/lightninglabs/pool/auctioneerrpc
go 1.15
require (
github.com/golang/protobuf v1.3.3
google.golang.org/grpc v1.29.1
)