add http-server part 6.3
This commit is contained in:
parent
c0f1a3db7e
commit
6291eaa819
1 changed files with 2 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue