Skip to content

Commit ad1dd48

Browse files
committed
Clean up
1 parent cbb8b2b commit ad1dd48

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

rust/src/main.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@ use tokio::main;
77
/// Examples
88
#[main]
99
async fn main() {
10+
/// Examples
1011
/// List all Services.
1112
let services = ServiceManager::list_all_services("20").await;
1213

13-
// List all Services by Name and Type.
14+
/// List all Services by Name and Type.
1415
let services = ServiceManager::find_service_by_name_and_type("whoami", "web_service").await;
1516

16-
// List all Services by Region.
17+
/// List all Services by Region.
1718
let services = ServiceManager::find_service_by_region("oregon", "10").await;
1819

19-
// List all Services by Environment.
20+
/// List all Services by Environment.
2021
let services = ServiceManager::find_service_by_environment("image", "10").await;
2122
}
2223

@@ -48,6 +49,7 @@ async fn main() {
4849
/// let services = result.unwrap();
4950
/// assert!(!services.is_empty());
5051
/// }
52+
///
5153
/// More tests...
5254
5355
#[cfg(test)]

0 commit comments

Comments
 (0)