chore: add authors name

This commit is contained in:
minhtrannhat 2023-11-30 14:41:52 -05:00
parent d9a093d569
commit b8b6a1b2bf
Signed by: minhtrannhat
GPG Key ID: E13CFA85C53F8062
2 changed files with 10 additions and 0 deletions

View File

@ -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 socket import socket, AF_INET, SOCK_DGRAM
from typing import Pattern, Tuple from typing import Pattern, Tuple
from argparse import ArgumentParser from argparse import ArgumentParser

View File

@ -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 socket import socket, AF_INET, SOCK_DGRAM
from argparse import ArgumentParser from argparse import ArgumentParser
import os import os