2022-05-12 17:12:18 -04:00
|
|
|
"""
|
|
|
|
Comnet usage catalog
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2022 Concordia CERC group
|
|
|
|
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|
|
|
"""
|
2022-05-16 09:48:09 -04:00
|
|
|
|
2022-05-12 17:12:18 -04:00
|
|
|
from catalog_factories.catalog import Catalog
|
|
|
|
from catalog_factories.data_models.usages.content import Content
|
|
|
|
|
|
|
|
|
|
|
|
class ComnetCatalog(Catalog):
|
|
|
|
def __init__(self, path):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def names(self, category=None):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def entries(self, category=None):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_entry(self, name):
|
|
|
|
pass
|