A Bluesky Playdate client
1pub const BSKY_USERNAME_SIZE = 64;
2pub const BSKY_PASSWORD_SIZE = 64;
3
4pub const EDITOR_BUFFER_SIZE = 256;
5pub const RESPONSE_BUFFER_SIZE = 1024 * 1024;
6
7pub const MARGIN = 4;
8
9pub const DEBUG_DONT_POST = true;
10
11// Credential storage constants
12pub const USERNAME_FILENAME = "bsky-username.txt";
13pub const PASSWORD_FILENAME = "bsky-password.txt";
14pub const MAX_CREDENTIAL_LENGTH = 128;