mirror of https://github.com/sbt/sbt.git
10 lines
167 B
Java
10 lines
167 B
Java
|
|
package xsbti;
|
||
|
|
|
||
|
|
import java.io.File;
|
||
|
|
|
||
|
|
public interface AppConfiguration
|
||
|
|
{
|
||
|
|
public String[] arguments();
|
||
|
|
public File baseDirectory();
|
||
|
|
public AppProvider provider();
|
||
|
|
}
|