storage_backend/component/components/base.py

16 lines
349 B
Python
Raw Permalink Normal View History

2024-11-08 02:15:16 +07:00
# Copyright 2017 Camptocamp SA
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)
from ..core import AbstractComponent
class BaseComponent(AbstractComponent):
"""This is the base component for every component
It is implicitely inherited by all components.
All your base are belong to us
"""
_name = "base"