Change-Id: Ie191e4154afe5aa47bb9ea5322010db014a1fa42 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1246 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			170 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			170 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
// Copyright 2019 Google LLC.
 | 
						|
// SPDX-License-Identifier: Apache-2.0
 | 
						|
 | 
						|
syntax = "proto3";
 | 
						|
package example;
 | 
						|
 | 
						|
message Thing {
 | 
						|
  string id = 1;
 | 
						|
  string kind_of_thing = 2;
 | 
						|
}
 |