Skip to content

Commit 4189fe3

Browse files
committed
Add validator script and object skeleton
1 parent a8827a1 commit 4189fe3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/techui_builder/validator.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import logging
2+
from dataclasses import dataclass
3+
from pathlib import Path
4+
5+
LOGGER = logging.getLogger(__name__)
6+
7+
8+
@dataclass
9+
class Validator:
10+
path: Path

0 commit comments

Comments
 (0)