Implemented JSON Service

This commit is contained in:
2026-04-21 10:43:39 +03:00
parent 9e666a892d
commit a9b258ceb3
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() {}
};