myxlib/examples/redis/01_client/client.cpp

13 lines
212 B
C++
Raw Normal View History

2020-04-23 20:36:49 +00:00
#include "client.hpp"
#include <QCoreApplication>
#include <QDebug>
int main( int argc, char** argv )
{
QCoreApplication app( argc, argv );
RedisClient client;
return( QCoreApplication::exec() );
} // main