v/tutorials/code/blog/article.v

14 lines
171 B
V

module main
struct Article {
id int
title string
text string
}
pub fn (app &App) find_all_articles() []Article {
return sql app.db {
select from Article
}
}