2022-05-23 00:16:32 +04:00

11 lines
221 B
Python

"""Utilities for registering and working with themes"""
from .plugin_registry import PluginRegistry
from typing import Callable
ThemeType = Callable[..., dict]
class ThemeRegistry(PluginRegistry[ThemeType]):
pass