Skip to content

Instantly share code, notes, and snippets.

View joedayz's full-sized avatar

José Díaz joedayz

View GitHub Profile
entity Blog {
name String required minlength(3),
handle String required minlength(2)
}
entity Entry {
title String required,
content TextBlob required,
date ZonedDateTime required
}