Learn how to create an insight using Lawg.js in < 1 minute
await lawg.insight({ title: "Users Joined", emoji: "👤" // or :bust_in_silhouette: (Optional) value: 250, });
emoji: ":your_emoji:"
await lawg.setInsight({ id: "insight_xxxxxxxxxxxxxx", set: 150, // Overides initial value (Now: 150, Before: 250) });
await lawg.incInsight({ id: "insight_xxxxxxxxxxxxxx", increment: 150, // Increments initial value (Now: 400, Before: 250) });
await lawg.incInsight({ id: "insight_xxxxxxxxxxxxxx", increment: -150, // Increments initial value (Now: 0, Before: 250) });