Restructure: remove separate parser

This commit is contained in:
Jonas Zeunert
2024-04-27 15:38:36 +02:00
parent 8e5cf17c0b
commit e03a70cc05
4 changed files with 16 additions and 34 deletions

View File

@@ -1,8 +1,10 @@
class Converter:
input = ""
from kiutils.footprint import Footprint
def __init__(self, input: str):
self.input = input
class Converter:
footprint: Footprint
def __init__(self, footprint: Footprint):
self.footprint = footprint
def convert(self) -> str:
return ""