Skip to content

Commit

Permalink
fix: fluvio_hub_util, make push_package_api pub
Browse files Browse the repository at this point in the history
  • Loading branch information
digikata committed Jun 3, 2024
1 parent 5a4479d commit 247bb28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fluvio-hub-util/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ pub async fn push_package_conn(pkgpath: &str, access: &HubAccess, target: &str)
push_package_api(&url, pkgpath, access).await
}

async fn push_package_api(put_url: &str, pkgpath: &str, access: &HubAccess) -> Result<()> {
pub async fn push_package_api(put_url: &str, pkgpath: &str, access: &HubAccess) -> Result<()> {
let pm = package_get_meta(pkgpath)?;
packagename_validate(&pm.name)?;

Expand Down

0 comments on commit 247bb28

Please sign in to comment.