Module shortner.constants

Constants module stores the constants used in the application

Expand source code
"""Constants module stores the constants used in the application"""

from string import ascii_letters, digits

CHARS = ascii_letters + digits
STUB_LENGTH = 10
REDIRECT_404_URL = "https://url-shortner-group5.azurewebsites.net/404"