You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
326 B
12 lines
326 B
package de.anomic.yacy;
|
|
|
|
import java.io.File;
|
|
|
|
import de.anomic.server.serverSwitch;
|
|
|
|
public interface yacySeedUploader {
|
|
public String uploadSeedFile(serverSwitch sb, yacySeedDB seedDB, File seedFile) throws Exception;
|
|
public String[] getConfigurationOptions();
|
|
public String[] getLibxDependences();
|
|
}
|