a mini social media app for small communities
at main 141 B view raw
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}