Created
November 29, 2020 09:24
-
-
Save moisesguimaraes/df7ce31a3cc7c3924caf03624a854b09 to your computer and use it in GitHub Desktop.
oslo.config Configurable Mini
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import abc | |
class ConfigurableMixin(metaclass=abc.ABCMeta): | |
@classmethod | |
@abc.abstractmethod | |
def from_config(cls, conf): | |
pass | |
@classmethod | |
def register_options(cls, conf): | |
for group, options in cls.list_options(): | |
conf.register_options(options, group) | |
@classmethod | |
@abc.abstractmethod | |
def list_options(cls): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment