mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-06 21:51:30 +00:00
10 lines
204 B
C++
10 lines
204 B
C++
#include <uwsgi.h>
|
|
|
|
#include "client/dbclient.h"
|
|
|
|
extern "C" int uwsgi_mongodb_version() {
|
|
// this is only a hack to force the linked to embed libmongoclient.a
|
|
mongo::DBClientConnection c;
|
|
return 0;
|
|
}
|