diff options
| author | Raphael Kabo <raphaelkabo@hey.com> | 2024-02-26 12:10:46 +0000 | 
|---|---|---|
| committer | Raphael Kabo <raphaelkabo@hey.com> | 2024-02-26 12:10:46 +0000 | 
| commit | 13e94921bd7942628a246f8c613cd898c45d9280 (patch) | |
| tree | c2b45d0fa91b27e2ae57c6711fb6163eff8238ba | |
| parent | 9e11c3667e027f805fca37b5dffe9d8a52303a14 (diff) | |
fix: remove unused imports
| -rw-r--r-- | src/helpers.ts | 2 | ||||
| -rw-r--r-- | src/lib/email.ts | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/src/helpers.ts b/src/helpers.ts index 6eda3d0..47b380f 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -1,6 +1,6 @@  import moment from "moment-timezone";  import icalGenerator from "ical-generator"; -import Log, { ILog } from "./models/Log.js"; +import Log from "./models/Log.js";  import { getConfig } from "./lib/config.js";  import { IEvent } from "./models/Event.js"; diff --git a/src/lib/email.ts b/src/lib/email.ts index 8a215a9..9b8162b 100644 --- a/src/lib/email.ts +++ b/src/lib/email.ts @@ -1,6 +1,6 @@  import { Request } from "express";  import sgMail from "@sendgrid/mail"; -import nodemailer, { TransportOptions } from "nodemailer"; +import nodemailer from "nodemailer";  import { getConfig } from "./config.js";  import SMTPTransport from "nodemailer/lib/smtp-transport/index.js";  import { exitWithError } from "./process.js";  | 
