You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
328 B
C

#pragma once
#include <stdbool.h>
struct http_request;
struct ap_object;
bool route_undo_follow( struct ap_object* act );
bool route_announce( struct ap_object* act );
bool route_add( struct ap_object* act );
bool route_inbox( struct http_request* req );
bool route_activity( struct ap_object* act );
void process_inbox();