diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-21 13:37:57 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-21 13:37:57 +0000 |
| commit | 9a8c551adfada379704d594a6ff3862f13857b8e (patch) | |
| tree | a902c6b313ab40a8914a34380ee194524dd67604 /src/main.rs | |
| parent | 12756fa66e3ec7f9dd24c66598085772829a8063 (diff) | |
add git http handling
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs index 38a3b95..c6e50cf 100644 --- a/src/main.rs +++ b/src/main.rs | |||
| @@ -2,11 +2,7 @@ use anyhow::Result; | |||
| 2 | use tracing::{info, Level}; | 2 | use tracing::{info, Level}; |
| 3 | use tracing_subscriber::FmtSubscriber; | 3 | use tracing_subscriber::FmtSubscriber; |
| 4 | 4 | ||
| 5 | mod config; | 5 | use ngit_grasp::{config::Config, http, nostr}; |
| 6 | mod http; | ||
| 7 | mod nostr; | ||
| 8 | |||
| 9 | use config::Config; | ||
| 10 | 6 | ||
| 11 | #[tokio::main] | 7 | #[tokio::main] |
| 12 | async fn main() -> Result<()> { | 8 | async fn main() -> Result<()> { |