lunabot/src/journal/emotion.c

10 lines
154 B
C
Raw Normal View History

2019-04-27 06:49:04 +00:00
#include <stdio.h>
2019-04-29 03:42:44 +00:00
#include "journal.h"
void handle_emotion(FILE *journal, char* msg)
2019-04-27 06:49:04 +00:00
{
2019-04-30 05:16:19 +00:00
journal_write_topic(journal, "emotion", msg);
2019-04-27 06:49:04 +00:00
return;
}