Added TreeView and ObjectView

This commit is contained in:
joss 2025-05-20 20:35:47 +02:00
parent 50f80d3397
commit a35d259fd8
4 changed files with 82 additions and 2 deletions

View file

@ -29,6 +29,8 @@ public class Main {
s.createContext("/", new RootView());
s.createContext("/main", new StartView());
s.createContext("/auth", new AuthView());
s.createContext("/tree", new TreeView());
s.createContext("/object", new ObjectView());
s.setExecutor(null);
s.start();
} catch (IOException e) {