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
The idea is to provide a low level interface to call salt modules without the need to have a Call object. This should make it easy to call functions that are not implemented as Call objects yet.
The text was updated successfully, but these errors were encountered:
Not exactly as low level, but add a generic type-less way of caller, which will enable to call anything as it is returning merely raw data that user will need to figure out by himself. Surely, it will add overhead of boilerplate code, but then users will have a choice:
Implement new stuff & submit patch here. But this has downside as not everyone can do this due to the common internal company policies that forbids this.
Use generic way with own boilerplate and then later replace, once library matches their expectations.
The idea is to provide a low level interface to call salt modules without the need to have a
Call
object. This should make it easy to call functions that are not implemented asCall
objects yet.The text was updated successfully, but these errors were encountered: