Moved code up one level post build folder creation

This commit is contained in:
2026-01-07 17:36:47 -06:00
parent 5c808c579a
commit d55bc3ae97
91 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Python imports
from dataclasses import dataclass, field
from dataclasses import asdict
# Gtk imports
# Application imports
from .manifest import Manifest
@dataclass
class ManifestMeta:
folder: str = ""
path: str = ""
manifest: Manifest = field(default_factory = lambda: Manifest())
def as_dict(self):
return asdict(self)