diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-10 13:13:16 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-10 13:13:16 -0600 |
| commit | ecf43aac41e27f6546858cd98a152ac761a9afb6 (patch) | |
| tree | 59067b99e180c6cf64790a40a60796714a24c98e /src/bin | |
| parent | 01959b16a21b22b5df5f16569c2a8e8f92beecef (diff) | |
refactor: rename generate to all
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/cli.rs b/src/bin/cli.rs index d0bbe989..fbd07d35 100644 --- a/src/bin/cli.rs +++ b/src/bin/cli.rs @@ -51,7 +51,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { host, } => { let repository = EntitiesRepository::new(token, host, project); - let entities = repository.generate().await?; + let entities = repository.all().await?; let json = serde_json::to_string_pretty(&entities)?; std::fs::write(output, json)?; } |
