mirror of
https://github.com/vlang/v.git
synced 2025-09-07 22:30:57 -04:00
14 lines
196 B
Plaintext
14 lines
196 B
Plaintext
module main
|
|
|
|
struct Article {
|
|
id int [primary; sql: serial]
|
|
title string
|
|
text string
|
|
}
|
|
|
|
pub fn (app &App) find_all_articles() []Article {
|
|
return sql app.db {
|
|
select from Article
|
|
}
|
|
}
|