Improved workspace structure
This commit is contained in:
@@ -1 +1 @@
|
||||
# imports:
|
||||
# imports
|
||||
|
1
src/lexer/abc/__init__.py
Normal file
1
src/lexer/abc/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
# imports
|
7
src/lexer/abc/lexer_abc.py
Normal file
7
src/lexer/abc/lexer_abc.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
|
||||
class LexerABC(ABC):
|
||||
|
||||
@abstractmethod
|
||||
def __init__(self): pass
|
@@ -28,8 +28,8 @@
|
||||
"ProjectType": "library",
|
||||
"SourcePath": "",
|
||||
"OutputPath": "../../dist",
|
||||
"Main": "lexer.main",
|
||||
"EntryPoint": "lexer",
|
||||
"Main": "",
|
||||
"EntryPoint": "",
|
||||
"IncludePackageData": false,
|
||||
"Included": [],
|
||||
"Excluded": [
|
||||
|
1
src/lexer/service/__init__.py
Normal file
1
src/lexer/service/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
# imports
|
7
src/lexer/service/lexer_service.py
Normal file
7
src/lexer/service/lexer_service.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from lexer.abc.lexer_abc import LexerABC
|
||||
|
||||
|
||||
class LexerService(LexerABC):
|
||||
|
||||
def __init__(self):
|
||||
pass
|
Reference in New Issue
Block a user