We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d59efe commit a2eb0bbCopy full SHA for a2eb0bb
1 file changed
crates/messages/src/main.rs
@@ -0,0 +1,11 @@
1
+use anyhow::Result;
2
+use messages::Client;
3
+
4
+#[tokio::main]
5
+async fn main() -> Result<()> {
6
+ let client = Client::from_env().await?;
7
+ for message in client.list_all().await? {
8
+ println!("{message:?}");
9
+ }
10
+ Ok(())
11
+}
0 commit comments