Improved workspace structure

This commit is contained in:
2021-08-02 15:58:05 +02:00
parent 1577c78c51
commit a97de91fc4
27 changed files with 222 additions and 20 deletions

View File

@@ -1 +1 @@
# imports:
# imports

View File

@@ -0,0 +1 @@
# imports

View File

@@ -0,0 +1,7 @@
from abc import ABC, abstractmethod
class LexerABC(ABC):
@abstractmethod
def __init__(self): pass

View File

@@ -28,8 +28,8 @@
"ProjectType": "library",
"SourcePath": "",
"OutputPath": "../../dist",
"Main": "lexer.main",
"EntryPoint": "lexer",
"Main": "",
"EntryPoint": "",
"IncludePackageData": false,
"Included": [],
"Excluded": [

View File

@@ -0,0 +1 @@
# imports

View File

@@ -0,0 +1,7 @@
from lexer.abc.lexer_abc import LexerABC
class LexerService(LexerABC):
def __init__(self):
pass