BW3-Core/FileHead.template.py

30 lines
807 B
Python
Raw Normal View History

2018-01-04 13:05:05 +01:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""!
____ ____ ______ __ __ __ _____
/ __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ /
/ __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ <
/ /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ /
/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/
German BOS Information Script
by Bastian Schroll
2018-01-07 11:33:38 +01:00
@file: FileHead.template.py
2018-01-04 13:05:05 +01:00
@date: ##.##.2018
@author: Bastian Schroll
2018-01-05 12:26:01 +01:00
@description: That is the FileHead that should be used for all files
2018-01-04 13:05:05 +01:00
"""
import logging
2018-01-07 14:07:38 +01:00
# from boswatch.module import file
2018-01-04 13:05:05 +01:00
2018-01-07 11:33:38 +01:00
logging.debug("- %s loaded", __name__)
2018-01-04 13:05:05 +01:00
2018-01-05 12:26:01 +01:00
class ClassName:
2018-01-04 13:05:05 +01:00
"""!General class comment"""
def __init__(self):
"""!init comment"""
pass