9 lines
227 B
Python
9 lines
227 B
Python
# !/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
from commons.Logger import Singleton
|
|
from commons.Common import Common as c
|
|
|
|
ReturnFolder = c().return_folder()
|
|
LOGGER = Singleton(ReturnFolder).logging
|
|
LOGGER.info("---hello world!")
|