8 lines
148 B
C
8 lines
148 B
C
|
#include "runtime-config.h"
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
char *config_get_url() {
|
||
|
/* TODO: find a better way to do this */
|
||
|
return getenv("NOTIFY_URL");
|
||
|
}
|