Skip to content

Instantly share code, notes, and snippets.

View ThePedroo's full-sized avatar

Pedro.js ThePedroo

View GitHub Profile
@ThePedroo
ThePedroo / main.c
Created January 31, 2024 02:52
Concord suppress notification example
#include <string.h>
#include <concord/discord.h>
#include <concord/log.h>
void on_message(struct discord *client, const struct discord_message *message) {
if (message->author->bot) return;
if (strcmp(".concord-test", message->content) == 0) {
struct discord_create_message params = {