Initial commit for usage catalog branch

This commit is contained in:
Guille Gutierrez 2022-05-12 16:22:19 -04:00
parent 7c82a6eaba
commit 1fbb99a5d6

View File

@ -0,0 +1,16 @@
"""
Usage catalog factory, publish the usage information
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
from pathlib import Path
from typing import TypeVar
from catalog_factories.construction.nrel_catalog import NrelCatalog
Catalog = TypeVar('Catalog')
class ConstructionCatalogFactory:
def __init__(self):
pass