Enabled gogga printlns in server.d

This commit is contained in:
Tristan B. Kildaire 2021-01-23 12:32:01 +02:00
parent 17c6e5ce08
commit 2fb72f253b
1 changed files with 18 additions and 0 deletions

18
source/client/sender.d Normal file
View File

@ -0,0 +1,18 @@
module client.sender;
import core.thread;
/**
* The MailSender class is used to instantiate an object
* which is used to start its own thread which will deliver
* mail (remote-only) to the respective recipients of the mail
* message specified. This is done such that the user need not
* wait and hang whilst mail is being delivered
*/
public final class MailSender : Thread
{
/**
* Constructs a new MailSender with the given
* email to be delivered (remotely)
*/
}