Select the types of activity you want to include in your feed.
1#ifndef SERVER_H 2#define SERVER_H 3 4#include <stdbool.h> 5#include "types.h" 6 7ant_value_t server_start_from_export(ant_t *js, ant_value_t default_export); 8int server_maybe_start_from_export(ant_t *js, ant_value_t default_export); 9 10#endif