Create the Repository
import eu.koboo.en2do.*;
import java.util.*;
// Name of the collection in database
@Collection("customer_repository")// Entity Key / Identifier
public interface CustomerRepository extends Repository<Customer, UUID> {
}Last updated