mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 14:02:49 +00:00
16 lines
333 B
Java
16 lines
333 B
Java
package me.impy.aegis.ext;
|
|
|
|
import java.io.InputStream;
|
|
import java.util.List;
|
|
|
|
import me.impy.aegis.KeyProfile;
|
|
|
|
public abstract class KeyConverter {
|
|
protected InputStream _stream;
|
|
|
|
public KeyConverter(InputStream stream) {
|
|
_stream = stream;
|
|
}
|
|
|
|
public abstract List<KeyProfile> convert() throws Exception;
|
|
}
|