@eshanized updated the repository!!!

This commit is contained in:
Eshan Roy (Eshanized)
2024-04-19 02:27:19 +05:30
parent 2e202d9ccd
commit 9f45325309

View File

@@ -0,0 +1,19 @@
# This class is to encapsulate package metadata, taken from the yaml files stored inside the sofirem github repository
class Package(object):
def __init__(
self,
name,
description,
category,
subcategory,
subcategory_description,
version,
):
self.name = name
self.description = description
self.category = category
self.subcategory = subcategory
self.subcategory_description = subcategory_description
self.version = version