This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Global constants | |
| readonly DEFAULT_SYSTEM_VOLUME="Macintosh" | |
| readonly DEFAULT_DATA_VOLUME="Macintosh - Data" | |
| # Text formating | |
| RED='\033[1;31m' | |
| GREEN='\033[1;32m' | |
| BLUE='\033[1;34m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import vweb | |
| import sqlite | |
| struct App { | |
| vweb.Context | |
| pub mut: | |
| db sqlite.DB | |
| } | |
| fn main() { |