forked from platypush/platypush
Fabio Manganiello
98a300c4b1
Plus, `platypush.schemas.system` has now been split into multiple submodules to avoid a single-file mega-module with all the system schemas definitions.
8 lines
213 B
Python
8 lines
213 B
Python
from marshmallow_dataclass import class_schema
|
|
|
|
from platypush.schemas.dataclasses import DataClassSchema
|
|
|
|
from ._model import SystemInfo
|
|
|
|
|
|
SystemInfoSchema = class_schema(SystemInfo, base_schema=DataClassSchema)
|