mirror of
				https://github.com/0glabs/0g-storage-node.git
				synced 2025-11-04 00:27:39 +00:00 
			
		
		
		
	
		
			
	
	
		
			17 lines
		
	
	
		
			230 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			230 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| 
								 | 
							
								syntax = "proto3";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								package zgs_grpc;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// A trivial ping service
							 | 
						||
| 
								 | 
							
								service ZgsGrpcService {
							 | 
						||
| 
								 | 
							
								  rpc Ping (PingRequest) returns (PingReply);
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								message PingRequest {
							 | 
						||
| 
								 | 
							
								  string message = 1;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								message PingReply {
							 | 
						||
| 
								 | 
							
								  string message = 1;
							 | 
						||
| 
								 | 
							
								}
							 |