mirror of
				https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
				synced 2024-07-29 21:57:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			238 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			238 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
 | 
						|
message Reserved {
 | 
						|
  string x = 1;
 | 
						|
  reserved 2, 3;
 | 
						|
  reserved 5 to 9;
 | 
						|
  reserved "foo", "bar";
 | 
						|
  string y = 10;
 | 
						|
}
 | 
						|
 | 
						|
enum ReservedEnum {
 | 
						|
  x = 1;
 | 
						|
  reserved 2, 3;
 | 
						|
  reserved 5 to 9;
 | 
						|
  reserved "foo", "bar";
 | 
						|
  y = 10;
 | 
						|
}
 |