1module entity 2 3// Site stores mutable site-wide config and data. 4pub struct Site { 5pub mut: 6 id int @[primary; sql: serial] 7 motd string 8}