mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-10 19:35:15 -05:00
13 lines
134 B
Java
13 lines
134 B
Java
|
|
package net.filebot;
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
|
public interface RenameAction {
|
|
|
|
File rename(File from, File to) throws Exception;
|
|
|
|
}
|