mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
15 lines
238 B
C
15 lines
238 B
C
#include <uwsgi.h>
|
|
|
|
/*
|
|
|
|
a fake plugin used for preloading mongodb library when only available as static.
|
|
|
|
*/
|
|
|
|
int uwsgi_mongodb_version(void);
|
|
|
|
struct uwsgi_plugin mongodb_plugin = {
|
|
.name = "mongodb",
|
|
.init = uwsgi_mongodb_version,
|
|
};
|