1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/source/net/sourceforge/filebot/cli/RenameAction.java

13 lines
152 B
Java
Raw Normal View History

package net.sourceforge.filebot.cli;
import java.io.File;
public interface RenameAction {
File rename(File from, File to) throws Exception;
}