mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-10-31 16:13:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			302 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			302 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| package moby.buildkit.secrets.v1;
 | |
| 
 | |
| option go_package = "secrets";
 | |
| 
 | |
| service Secrets{
 | |
|   rpc GetSecret(GetSecretRequest) returns (GetSecretResponse);
 | |
| }
 | |
| 
 | |
| 
 | |
| message GetSecretRequest {
 | |
| 	string ID = 1;
 | |
| 	map<string, string> annotations = 2;
 | |
| }
 | |
| 
 | |
| message GetSecretResponse {
 | |
| 	bytes data = 1;
 | |
| }
 | 
