Add Speedtest cog #28

Open
cswimr wants to merge 19 commits from speedtest into main
Showing only changes of commit d557928fee - Show all commits

View file

@ -62,11 +62,11 @@ class Server(BaseModel):
port: int port: int
ip: str ip: str
class Result: class Result(BaseModel):
id: str id: str
url: str url: str
persisted: bool persisted: bool
@property @property
def image(self): def image(self) -> str:
return self.url + ".png" return self.url + ".png"