···11-import gleam/string
22-import simplifile
33-import sqlight
44-55-/// This will generate the testing username-password combinations defined in the README, as well
66-/// as a `/data/debug` file, which sets log levels to... Yup! To debug instead of Info
77-pub fn main() {
88- case simplifile.create_file("../data/configvars/debug") {
99- Ok(..) | Error(simplifile.Eexist) -> Nil
1010- Error(fuck) -> {
1111- let fucking_error = string.inspect(fuck)
1212- panic as fucking_error
1313- }
1414- }
1515- use db <- sqlight.with_connection("../data/instance.db")
1616- // todo as "The database changes for creating a user are yet unknown."
1717- Nil
1818-}