src.cmd_types.plugins

 1from dataclasses import dataclass
 2from types import ModuleType
 3from typing import Any
 4
 5
 6@dataclass
 7class PluginMetadata:
 8    module: ModuleType
 9    author: Any
10    version: Any
@dataclass
class PluginMetadata:
 7@dataclass
 8class PluginMetadata:
 9    module: ModuleType
10    author: Any
11    version: Any
PluginMetadata(module: module, author: Any, version: Any)
module: module
author: Any
version: Any