26 lines
688 B
TypeScript
26 lines
688 B
TypeScript
import { format } from "date-fns";
|
|
import { GuildScheduledEvent, Message, MessageCreateOptions, TextChannel } from "discord.js";
|
|
import { ScheduledTask } from "node-cron";
|
|
import { v4 as uuid } from "uuid";
|
|
import { client, yavinJellyfinHandler } from "../..";
|
|
import { config } from "../configuration";
|
|
import { Maybe } from "../interfaces";
|
|
import { logger } from "../logger";
|
|
|
|
|
|
export const name = 'guildScheduledEventCreate'
|
|
|
|
export async function execute(event: GuildScheduledEvent) {
|
|
const guildId = event.guildId
|
|
const requestId = uuid()
|
|
|
|
if(event.description?.includes("!wp")) {
|
|
logger.info("Got manual create event of watchparty event!")
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
} |