mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Rename/repackage bisq.cli.{app.Bisq=>CliMain}
This commit is contained in:
parent
d19581a089
commit
0b338bbbea
@ -335,7 +335,7 @@ configure(project(':core')) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
configure(project(':cli')) {
|
configure(project(':cli')) {
|
||||||
mainClassName = 'bisq.cli.app.BisqCliMain'
|
mainClassName = 'bisq.cli.CliMain'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':proto')
|
compile project(':proto')
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package bisq.cli.app;
|
package bisq.cli;
|
||||||
|
|
||||||
import io.grpc.CallCredentials;
|
import io.grpc.CallCredentials;
|
||||||
import io.grpc.Metadata;
|
import io.grpc.Metadata;
|
@ -15,7 +15,7 @@
|
|||||||
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package bisq.cli.app;
|
package bisq.cli;
|
||||||
|
|
||||||
import bisq.proto.grpc.GetBalanceGrpc;
|
import bisq.proto.grpc.GetBalanceGrpc;
|
||||||
import bisq.proto.grpc.GetBalanceRequest;
|
import bisq.proto.grpc.GetBalanceRequest;
|
||||||
@ -46,7 +46,7 @@ import static java.lang.System.out;
|
|||||||
* A command-line client for the Bisq gRPC API.
|
* A command-line client for the Bisq gRPC API.
|
||||||
*/
|
*/
|
||||||
@Slf4j
|
@Slf4j
|
||||||
public class BisqCliMain {
|
public class CliMain {
|
||||||
|
|
||||||
private static final int EXIT_SUCCESS = 0;
|
private static final int EXIT_SUCCESS = 0;
|
||||||
private static final int EXIT_FAILURE = 1;
|
private static final int EXIT_FAILURE = 1;
|
Loading…
Reference in New Issue
Block a user