flashsync / src /card.gleam
Dhurgh's picture
Permanently remove build artifacts from history
d0b8e8f
Raw
History Blame Contribute Delete
132 Bytes
pub type Card {
Card(
id: String,
question: String,
answer: String,
last_reviewed: Int,
interval: Int,
)
}