1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* Copyright (c) 2024-Present, Jeremy Plichta
* Licensed under the MIT License
*/
//! Application services for Tinytown.
//!
//! This module provides the shared business logic used by both the `tt` CLI
//! and the `townhall` REST API daemon. By extracting orchestration operations
//! into reusable services, we ensure consistent behavior across all interfaces.
//!
//! ## Architecture
//!
//! ```text
//! ┌────────────┐ ┌──────────────┐
//! │ tt CLI │ │ townhall │
//! └─────┬──────┘ └──────┬───────┘
//! │ │
//! ▼ ▼
//! ┌─────────────────────────────────┐
//! │ Application Services │
//! │ (agents, tasks, backlog, etc) │
//! └─────────────────────────────────┘
//! │
//! ▼
//! ┌─────────────────────────────────┐
//! │ Town / Channel (Redis) │
//! └─────────────────────────────────┘
//! ```
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use *;