diff --git a/gns3fy/api.py b/gns3fy/api.py index 00947ef..9a7f406 100644 --- a/gns3fy/api.py +++ b/gns3fy/api.py @@ -135,6 +135,10 @@ def get_projects(self): "Returns the list of dictionaries of the projects on the server" return self.http_call("get", url=f"{self.base_url}/projects").json() + def get_version(self): + "Returns the version information" + return self.http_call("get", url=f"{self.base_url}/version").json() + @dataclass(config=Config) class Link: