aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/backend/registry.py
blob: 6a0da743693c891da3353e0a383b8d291fad696e (plain)
1
2
3
4
5
6
7
8
# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""Backend module."""
from mlia.backend.config import BackendConfiguration
from mlia.utils.registry import Registry

# All supported targets are required to be registered here.
registry = Registry[BackendConfiguration]()