linter fixes
Some checks failed
Check / Lint and Check (push) Has been cancelled

This commit is contained in:
2025-11-15 15:28:19 +01:00
parent bf51e2f16b
commit ab3e044a44
4 changed files with 46 additions and 84 deletions

View File

@@ -1,12 +1,12 @@
import "server-only";
export type listmonkData = {
export interface listmonkData {
email: string;
name: string;
status: "enabled" | "blocklisted";
lists: number[];
attribs: Record<string, string>;
};
}
async function listmonk(data: listmonkData): Promise<string> {
const listmonkUrl = process.env.LISTMONK_URL ?? "http://localhost:9000/api/";