Первое приближение для новой библиотеки Redis

This commit is contained in:
2020-04-25 08:45:05 +03:00
parent e6253e777f
commit 37fd015311
31 changed files with 1226 additions and 16 deletions

View File

@ -0,0 +1,12 @@
#include "client.hpp"
#include <QCoreApplication>
#include <QDebug>
int main( int argc, char** argv )
{
QCoreApplication app( argc, argv );
RedisClient client;
return( QCoreApplication::exec() );
} // main