Initial commit

This commit is contained in:
2025-09-19 21:27:35 +02:00
commit bf467bec89
26 changed files with 648 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package github.openautonomousconnection.protocol.classic;
public class Classic_LocalDomain extends Classic_Domain {
public Classic_LocalDomain(String name, String endName, String path) {
super(name, endName, null, path);
}
}