18 lines
280 B
Python
18 lines
280 B
Python
import sys
|
|
import os
|
|
|
|
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "src")))
|
|
|
|
|
|
from utils.custom_logger import get_logger
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
def example():
|
|
logger.info("Application started")
|
|
print("Hello, World!")
|
|
|
|
|
|
example()
|