This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | enum UpdateType { | |
| CASES = 1; | |
| VACCINATIONS = 2; | |
| } | |
| message CovidUpdate { | |
| optional string country = 1; | |
| optional UpdateType type = 2; | |
| optional float amout = 3; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import "covid_updates.proto"; | |
| enum SortType { | |
| ASCENDING = 1; | |
| DESCENDING = 2; | |
| } | |
| message CovidUpdateRequest { | |
| optional uint32 size = 1; // How many records | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | message Foo { | |
| reserved 2, 5, 8 to 10; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import os | |
| import re | |
| import sys | |
| from urllib.parse import urlparse, urlunparse | |
| import toml | |
| PIPFILE_TO_UV_DEP_NAMES = {"packages": "dependencies", "dev-packages": "dev-dependencies"} |