24 lines
569 B
Python
24 lines
569 B
Python
# pyChaChaDummyProject (c) by chacha
|
|
#
|
|
# pyChaChaDummyProject is licensed under a
|
|
# Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Unported License.
|
|
#
|
|
# You should have received a copy of the license along with this
|
|
# work. If not, see <https://creativecommons.org/licenses/by-nc-sa/4.0/>.
|
|
|
|
from __future__ import annotations
|
|
from typing import TYPE_CHECKING
|
|
|
|
# from pathlib import Path
|
|
# import os
|
|
# import datetime
|
|
|
|
|
|
from .helper_base import helper_base
|
|
|
|
|
|
class changelog_gen(helper_base):
|
|
@classmethod
|
|
def do_job(cls):
|
|
pass
|