mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-02-20 15:13:35 +00:00
* Move /common/src to /src * Move services to net.psforever package * Move /pslogin to /server
13 lines
No EOL
236 B
Java
13 lines
No EOL
236 B
Java
package scodec.interop.akka;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
import akka.util.ByteString.ByteString1C;
|
|
|
|
interface PrivacyHelper {
|
|
|
|
static ByteString1C createByteString1C(byte[] array) {
|
|
return new ByteString1C(array);
|
|
}
|
|
|
|
} |