feat: add mermaid sequence diagram

This commit is contained in:
2025-03-25 17:59:14 +01:00
parent 135af82172
commit cd3b58f7f8
2 changed files with 9 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
package clientserver;
public class App {
public String getGreeting() {
return "Hello World!";
}
@@ -8,6 +9,6 @@ public class App {
public static void main(String[] args) {
System.out.println(new App().getGreeting());
Server.scannerUDP(1000, 5000);
Server.scannerUDP(0, 5000);
}
}