This commit is contained in:
GYJ 2025-01-09 14:52:35 +08:00
parent 8a6ed19045
commit 64f910f875
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,6 @@ public class PublisherService {
public static void main(String[] args) {
Publisher publisher = new Publisher("47.122.26.160:4150");
publisher.publish("test", new byte[]{'a', 'A', 'C'});
publisher.publish("test", "发的说说发的啥".getBytes());
}
}