diff options
author | Louis Brauer <louis@openbooking.ch> | 2024-05-31 00:30:37 +0200 |
---|---|---|
committer | Louis Brauer <louis@openbooking.ch> | 2024-05-31 00:30:37 +0200 |
commit | c3bcb2bd3b354bb05997347821a37506ca6cc298 (patch) | |
tree | 83e10ba950cc52c0c3e75b23ea5c5b9827020c85 /snac.h | |
parent | af8f1ef273e457318cb48f198e73c59e57373723 (diff) |
Implement instance announcements
Diffstat (limited to 'snac.h')
-rw-r--r-- | snac.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -375,3 +375,9 @@ typedef enum { } http_status; const char *http_status_text(int status); + +typedef struct { + double timestamp; + char *text; +} t_announcement; +t_announcement *announcement(double after); |