15 lines
240 B
C++
15 lines
240 B
C++
#include "client.hpp"
|
|
|
|
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
|
|
namespace MR = myx::redis;
|
|
|
|
int main( int argc, char** argv )
|
|
{
|
|
QCoreApplication app( argc, argv );
|
|
RedisClient client;
|
|
|
|
return( QCoreApplication::exec() );
|
|
} // main
|