add http-server part 6.3

This commit is contained in:
Christopher Hase 2025-04-10 14:50:46 +02:00
parent c0f1a3db7e
commit 6291eaa819

View file

@ -1,5 +1,6 @@
import { exec } from 'child_process'; import { exec } from 'child_process';
import * as fs from 'fs'; import * as fs from 'fs';
import * as nodemailer from 'nodemailer';
// Config for scheduling the next time the main process (sending of horoscope) is run // Config for scheduling the next time the main process (sending of horoscope) is run
interface Config { interface Config {
@ -17,7 +18,7 @@ interface Node {
var config : Config; var config : Config;
const nodemailer = require('nodemailer'); //const nodemailer = require('nodemailer');
export function executeCommand(): void { export function executeCommand(): void {