Learn how to use Rust to build ATProto powered applications

Compare changes

Choose any two refs to compare.

Changed files
+2 -2
src
+1 -1
README.md
··· 628 628 > schema. 629 629 630 630 ```bash 631 - esquema-cli generate -l ./lexicons/ -o ./src/lexicons/ 631 + esquema-cli generate local -l ./lexicons/ -o ./src/ --module lexicons 632 632 ``` 633 633 634 634
+1 -1
src/main.rs
··· 121 121 None => { 122 122 let html = ErrorTemplate { 123 123 title: "Error", 124 - error: "The OAuth agent did not return a DID. May try logging in.", 124 + error: "The OAuth agent did not return a DID. May try re-logging in.", 125 125 }; 126 126 HttpResponse::Ok().body(html.render().expect("template should be valid")) 127 127 }