[WIP] Improved cpl new templating #139
This commit is contained in:
11
src/cpl_cli/.cpl/project_file_license.py
Normal file
11
src/cpl_cli/.cpl/project_file_license.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from cpl_cli.abc.file_template_abc import FileTemplateABC
|
||||
|
||||
|
||||
class ProjectFileLicense(FileTemplateABC):
|
||||
|
||||
def __init__(self, path: str):
|
||||
FileTemplateABC.__init__(self, '', path, '')
|
||||
self._name = 'LICENSE'
|
||||
|
||||
def get_code(self) -> str:
|
||||
return self._code
|
Reference in New Issue
Block a user