()
| 16 | |
| 17 | #[tokio::main] |
| 18 | async fn main() { |
| 19 | let usr_req: String = get_user_response("What website are we building today?"); |
| 20 | |
| 21 | let mut manage_agent: ManagingAgent = ManagingAgent::new(usr_req) |
| 22 | .await |
| 23 | .expect("Error creating agent"); |
| 24 | |
| 25 | manage_agent.execute_project().await; |
| 26 | |
| 27 | // dbg!(manage_agent); |
| 28 | } |
nothing calls this directly
no test coverage detected