Implemented JSON Service

This commit is contained in:
2026-04-21 10:43:39 +03:00
parent 7cad0f8daf
commit 54f612e785
3 changed files with 25559 additions and 0 deletions

8
JsonService.h Normal file
View File

@@ -0,0 +1,8 @@
#include "Service.h"
#include <string>
class JsonService : public Service {
public:
virtual Weather getWeather(std::string s) override;
virtual ~JsonService() {}
};