Skip to content

Commit

Permalink
232 unify oss and cloud cli
Browse files Browse the repository at this point in the history
  • Loading branch information
senia-psm committed May 31, 2024
1 parent 6c713a5 commit 8d1e834
Show file tree
Hide file tree
Showing 86 changed files with 9,584 additions and 2,403 deletions.
40 changes: 40 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions golem-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ readme = "README.md"
description = "Command line interface for OSS version of Golem. See also golem-cloud-cli."
autotests = false

[[bin]]
name = "golem-cli"
path = "src/main.rs"

[[bin]]
name = "golem-cloud-cli"
path = "src/cloud_main.rs"

[[test]]
name = "integration"
path = "tests/main.rs"
Expand All @@ -18,6 +26,10 @@ harness = false
[dependencies]
golem-client = { path = "../golem-client", version = "0.0.0" }

golem-cloud-client = { path = "../../golem-cloud/golem-cloud-client", version="0.0.0" }
golem-cloud-worker-client = { path = "../../golem-cloud/golem-cloud-worker-client", version="0.0.0" }


async-trait = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true }
Expand Down Expand Up @@ -56,6 +68,8 @@ version-compare = "=0.0.11"
wasm-wave = { workspace = true }
cli-table = { workspace = true }
textwrap = "0.16.1"
anyhow.workspace = true
colored = "2.1.0"

[dev-dependencies]
golem-test-framework = { path = "../golem-test-framework", version = "0.0.0" }
Expand Down
292 changes: 0 additions & 292 deletions golem-cli/src/api_definition.rs

This file was deleted.

1 change: 0 additions & 1 deletion golem-cli/src/clients.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@
pub mod api_definition;
pub mod api_deployment;
pub mod component;
pub mod errors;
pub mod health_check;
pub mod worker;
Loading

0 comments on commit 8d1e834

Please sign in to comment.