mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-30 17:38:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			176 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			176 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| message WSError {
 | |
|     ErrorCode code = 1;
 | |
|     string msg = 2;
 | |
| }
 | |
| enum ErrorCode {
 | |
|     InternalError = 0;
 | |
|     UnsupportedMessage = 1;
 | |
|     Unauthorized = 2;
 | |
| }
 | 
