2023-03-07 04:04:57 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
2023-01-31 10:33:42 +08:00
|
|
|
|
2023-03-08 08:39:22 +08:00
|
|
|
from .nlspec import SpecAttr, SpecAttrSet, SpecEnumEntry, SpecEnumSet, \
|
|
|
|
SpecFamily, SpecOperation
|
2023-01-31 10:33:42 +08:00
|
|
|
from .ynl import YnlFamily
|
|
|
|
|
2023-03-08 08:39:22 +08:00
|
|
|
__all__ = ["SpecAttr", "SpecAttrSet", "SpecEnumEntry", "SpecEnumSet",
|
|
|
|
"SpecFamily", "SpecOperation", "YnlFamily"]
|