2024-04-24 00:55:06 +00:00
|
|
|
#include "runtime-config.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
char *config_get_url() {
|
|
|
|
/* TODO: find a better way to do this */
|
|
|
|
return getenv("NOTIFY_URL");
|
|
|
|
}
|
2024-04-24 02:01:26 +00:00
|
|
|
int should_enable_debug() {
|
|
|
|
return getenv("NEST_SANITY_DEBUG")!=NULL?1:0;
|
|
|
|
}
|