You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think we need something like a plugin system to extend the KassenTerminal with custom plugins (e.g. MagnaCharta Plugin)
Maybe it can work like this:
>>># in config you can add:>>>PLUGINS_CFG= [
... "plugin1",
... "plugin2",
... "sys", # example
...]
>>># somewhere in code:>>>PLUGINS= []
>>>forpsinPLUGINS_CFG:
... PLUGINS.append(__import__(ps))
>>># to use them:>>>forpinPLUGINS:
... # example usage:
... print(p.__name__)
...
plugin1plugin2sys>>>
What do you think?
The text was updated successfully, but these errors were encountered:
I think we need something like a plugin system to extend the KassenTerminal with custom plugins (e.g. MagnaCharta Plugin)
Maybe it can work like this:
What do you think?
The text was updated successfully, but these errors were encountered: