Something went wrong. Try again.
A lexicon-driven AppView for ATProto.
Something went wrong. Try again.
12345678910111213141516#!/bin/sh# Run rustfmt checkcargo fmt -- --checkif [ $? -ne 0 ]; then echo "rustfmt check failed. Run 'cargo fmt' to fix." exit 1fi# Run clippycargo clippy --all-targets -- -D warningsif [ $? -ne 0 ]; then echo "clippy check failed. Fix the warnings above." exit 1fi