View Javadoc
1   package io.guixer.ext;
2   
3   import java.io.IOException;
4   
5   import io.guixer.tools.RunnerContext;
6   
7   public interface GuixerExtension {
8   
9   	void executeCommand(
10  		RunnerContext context,
11  		String command
12  	) throws IOException;
13  }