codetether_agent/tui/utils/helpers.rs
1pub fn truncate_with_ellipsis(s: &str, _max: usize) -> String {
2 s.to_string()
3}
4
5pub struct PendingImage;
6pub struct ChatSyncConfig;
7pub struct MinioClient;
8
9pub fn is_secure_environment() -> bool {
10 false
11}
12pub fn parse_chat_sync_config() -> Option<ChatSyncConfig> {
13 None
14}
15pub fn format_bytes(_n: u64) -> String {
16 "0B".to_string()
17}
18pub fn current_spinner_frame() -> &'static str {
19 "|"
20}
21
22pub struct ChatArchiveRecord;