www_veda2/web/components/contact/model.v

15 lines
261 B
Coq
Raw Normal View History

2024-10-07 15:28:39 +00:00
module contact
struct ContactPage {
address string
phone string
email string
}
fn default_contact_page() ContactPage {
return ContactPage{
address: '121 King Street, Melbourne, Australia'
phone: '+123 456 789 000'
email: 'company@email.com'
}
}