Added a NoHashInterface to allow users to control their own hash db
This commit is contained in:
13
src/nodash/core/spheres/NoHashInterface.java
Normal file
13
src/nodash/core/spheres/NoHashInterface.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package nodash.core.spheres;
|
||||
|
||||
import nodash.models.NoUser;
|
||||
|
||||
public interface NoHashInterface {
|
||||
public void setup();
|
||||
public void saveToFile();
|
||||
public void addNewNoUser(NoUser user);
|
||||
public void insertHash(String hash);
|
||||
public void removeHash(String hash);
|
||||
public boolean checkHash(String hash);
|
||||
public int size();
|
||||
}
|
||||
Reference in New Issue
Block a user