Move src files to standard java folder structure

This commit is contained in:
Grische
2022-04-10 13:15:34 +00:00
committed by harlekin
parent 1e89734609
commit 78da2832af
82 changed files with 0 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
package com.sheepit.client.hardware.hwid;
import java.util.Optional;
public interface BasicHWInfoStrategy {
Optional<String> getHarddriveID();
Optional<String> getMAC();
Optional<String> getProcessorName();
}