mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
8 lines
185 B
Java
8 lines
185 B
Java
public class App {
|
|
public void run() {
|
|
SqlRepository repo = new SqlRepository();
|
|
repo.find(42);
|
|
repo.find("alice", true);
|
|
repo.save("test");
|
|
}
|
|
}
|