Add: Parser + test
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
class Converter:
|
||||
def __init__(self):
|
||||
None
|
||||
input = ""
|
||||
|
||||
def __init__(self, input: str):
|
||||
self.input = input
|
||||
|
||||
def convert(self) -> str:
|
||||
return ""
|
||||
|
||||
Reference in New Issue
Block a user