mirror of
				https://github.com/livebook-dev/livebook.git
				synced 2025-10-31 15:56:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			437 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			437 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
| defmodule LivebookProto.UserConnected do
 | |
|   use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
 | |
| 
 | |
|   field :name, 1, type: :string
 | |
|   field :secrets, 2, repeated: true, type: LivebookProto.Secret
 | |
|   field :file_systems, 3, repeated: true, type: LivebookProto.FileSystem, json_name: "fileSystems"
 | |
| 
 | |
|   field :deployment_groups, 4,
 | |
|     repeated: true,
 | |
|     type: LivebookProto.DeploymentGroup,
 | |
|     json_name: "deploymentGroups"
 | |
| end
 |