13 lines
212 B
C++
13 lines
212 B
C++
|
#include "client.hpp"
|
||
|
|
||
|
#include <QCoreApplication>
|
||
|
#include <QDebug>
|
||
|
|
||
|
int main( int argc, char** argv )
|
||
|
{
|
||
|
QCoreApplication app( argc, argv );
|
||
|
RedisClient client;
|
||
|
|
||
|
return( QCoreApplication::exec() );
|
||
|
} // main
|