"""
Date: 09-16-19
Class: CS5310
Assignment: InClass03 - Custom Stack and Queue Implementation.
Author: Brandon Rodriguez


Custom implementation of a Stack.
"""

# System Imports.


# User Class Imports.
from resources import logging as init_logging


# Initialize Logger.
logger = init_logging.get_logger(__name__)


def test():
    logger.info('Testing from main.py.')


test()