mirror of
https://github.com/mitb-archive/filebot
synced 2025-01-12 14:28:29 -05:00
13 lines
136 B
Java
13 lines
136 B
Java
|
|
package net.filebot;
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
|
public interface RenameAction {
|
|
|
|
File rename(File from, File to) throws Exception;
|
|
|
|
}
|