move modules around.

This commit is contained in:
Eugene Yokota
2015-08-20 00:59:57 -04:00
parent 8b4e0486a8
commit 871b4f4eef
99 changed files with 10 additions and 12 deletions
@@ -0,0 +1,13 @@
/* sbt -- Simple Build Tool
* Copyright 2009 Mark Harrah
*/
package xsbti;
public interface Logger
{
void error(F0<String> msg);
void warn(F0<String> msg);
void info(F0<String> msg);
void debug(F0<String> msg);
void trace(F0<Throwable> exception);
}