Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
chore: adding make file, adding new team member to codeowners (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
kehiy authored Nov 14, 2023
1 parent 53753b6 commit 66890be
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*/ @zurvan-lab/redvin-team
*/ @zurvan-lab/redvin-team
docs/ @eznix86
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
test:
cargo test --all

fmt:
cargo fmt

check:
cargo check
cargo fmt --check
5 changes: 2 additions & 3 deletions rpc/proto/network.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package network;
service Network {
rpc GetNetworkInfo(GetNetworkInfoRequest) returns (GetNetworkInfoResponse);
rpc GetNodeInfo(GetNodeInfoRequest) returns (GetNodeInfoResponse);
}
}

message GetNetworkInfoRequest {}

Expand All @@ -31,5 +31,4 @@ message PeerInfo {
int64 last_sent = 11;
int64 last_received = 12;
string address = 15;
}

}
2 changes: 1 addition & 1 deletion rpc/proto/nostr.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package nostr;

service NostrRPC {
rpc GetAllPublicKeys(GetAllPublicKeysRequest) returns (GetAllPublicKeysResponse);
}
}

message GetAllPublicKeysRequest {}

Expand Down

0 comments on commit 66890be

Please sign in to comment.