examples: run vfmt over psql/customer.v

pull/10394/head
Delyan Angelov 2021-06-07 18:25:20 +03:00
parent 01a8d3f8a1
commit ac0b638b6a
1 changed files with 5 additions and 6 deletions

View File

@ -5,14 +5,15 @@ import pg
const dash = '----------------------------------------------------------------' const dash = '----------------------------------------------------------------'
struct Customer { struct Customer {
id int id int
name string name string
nr_orders int nr_orders int
country string country string
} }
fn main() { fn main() {
/*db := pg.connect(pg.Config{ /*
db := pg.connect(pg.Config{
host: 'localhost' //'127.0.0.1' host: 'localhost' //'127.0.0.1'
user: 'postgres' user: 'postgres'
dbname: 'customerdb' dbname: 'customerdb'
@ -60,5 +61,3 @@ fn main() {
} }
db.insert(nc)*/ db.insert(nc)*/
} }