diff --git a/src/myftp/client.py b/src/myftp/client.py index 933f45c..94b739f 100644 --- a/src/myftp/client.py +++ b/src/myftp/client.py @@ -1,3 +1,8 @@ +# Author: Minh Tran and Angelo Reoligio +# Date: November 30, 2023 +# Description: FTP client (both UDP and TCP implemented) + + from socket import socket, AF_INET, SOCK_DGRAM from typing import Pattern, Tuple from argparse import ArgumentParser diff --git a/src/myftp/server.py b/src/myftp/server.py index 0692db6..67fd87c 100644 --- a/src/myftp/server.py +++ b/src/myftp/server.py @@ -1,3 +1,8 @@ +# Author: Minh Tran and Angelo Reoligio +# Date: November 30, 2023 +# Description: FTP server (both UDP and TCP implemented) + + from socket import socket, AF_INET, SOCK_DGRAM from argparse import ArgumentParser import os