package org.jugile.daims;
import org.jugile.proto2.domain.Domain;
import org.jugile.util.Jugile;
public class TestDB extends Jugile {
public static void main(String args[]) throws Exception {
Domain d = Domain.getDomain();
d.createPerson().setName("name1");
d.createPerson().setName("name2");
d.commit();
}
}