morbin.template

1from morbin import Morbin, Output
2
3
4class Program(Morbin):
5    def program(self, args: str = "") -> Output:
6        """Base function for executing `program` commands.
7
8        Higher level commands should be built on this function and return its output."""
9        return self.execute("program", args)
class Program(morbin.morbin.Morbin):
 5class Program(Morbin):
 6    def program(self, args: str = "") -> Output:
 7        """Base function for executing `program` commands.
 8
 9        Higher level commands should be built on this function and return its output."""
10        return self.execute("program", args)
def program(self, args: str = '') -> morbin.morbin.Output:
 6    def program(self, args: str = "") -> Output:
 7        """Base function for executing `program` commands.
 8
 9        Higher level commands should be built on this function and return its output."""
10        return self.execute("program", args)

Base function for executing program commands.

Higher level commands should be built on this function and return its output.