ddos-script/simpleDDoS/__init__.py

18 lines
482 B
Python
Raw Normal View History

2023-11-06 18:27:52 -05:00
"""Top-level package for Simple DDoS."""
# simpleDDoS/__init__.py
__app_name__ = 'simple_ddos'
__version__ = "0.1.0"
2023-11-07 23:46:00 -05:00
# import socket
#
# ( socket.gaierror,
# KeyboardInterrupt,
# NameError
# ) = range(3)
#
# ERRORS = {
# KeyboardInterrupt: 'Keyboard Interrupt. Terminating session...',
# socket.gaierror: 'Unknown address.' + '\n' + 'Please input the correct ip address.',
# NameError: 'Unknown address.' + '\n' + 'Please input the correct ip address.'
# }