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
309 B
12 lines
309 B
20 years ago
|
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);
|
||
|
public String[] getConfigurationOptions();
|
||
|
public String[] getLibxDependences();
|
||
|
}
|