Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;; A==============================================================================
- (defun controller-get (command &optional arg)
- "This is the main entrypoint for getting code abstraction.
- Given some COMMAND name the actual function is loaded from it's org source
- block in <controller-implementation>.org.
- Pass an optional ARG to have the code block automatically formatted."
- (if (string= controller-implementation "python")
- (controller-python-get command arg)))
- ;; B==============================================================================
- (defun controller-get (command &optional arg)
- "This is the main entrypoint for getting code abstraction.
- Given some COMMAND name the actual function is loaded from it's org source
- block in <controller-implementation>.org.
- Pass an optional ARG to have the code block automatically formatted."
- (if (string= controller-implementation "python")
- (controller-python-get command arg)))
Advertisement