Added first structure and tests

This commit is contained in:
2020-11-19 23:06:57 +01:00
parent b3b09d2462
commit adfef66621
20 changed files with 144 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
from typing import Optional
class Template:
def __init__(self, name: Optional[str] = None, path: Optional[str] = None):
self._name: Optional[str] = name
self._path: Optional[str] = path
@property
def name(self):
return self._name
@property
def path(self):
return self._path