Add small todo list for me

This commit is contained in:
famfo 2022-01-09 13:56:25 +01:00
parent da1677f455
commit 340c652bb1

View file

@ -4,7 +4,7 @@
[![Documentation](https://docs.rs/circe/badge.svg)](https://docs.rs/async-circe)
[![Unlicense](https://img.shields.io/crates/l/circe.svg)](./LICENSE)
`Circe` is a an IRC crate built to be as minimal as possible. It's currently work-in-progress, and more stuff is on its way!
`async-circe` is a an IRC crate built to be as minimal as possible. It's currently work-in-progress, and more stuff is on its way!
## Getting started
@ -16,13 +16,13 @@ use async_circe::{commands::Command, Client, Config};
#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<(), tokio::io::Error> {
let config = Config::new(
&["#chaos", "#async-circe"],
"karx.xyz",
Some("+B"),
Some("async-circe"),
6697,
"circe",
);
&["#chaos", "#async-circe"],
"karx.xyz",
Some("+B"),
Some("async-circe"),
6697,
"circe",
);
let mut client = Client::new(config).await.unwrap();
client.identify().await.unwrap();
@ -38,3 +38,7 @@ async fn main() -> Result<(), tokio::io::Error> {
```
Happy hacking!
todo list for famfo:
- [ ]: implement getting the topic of a channel
- [ ]: implement getting users in a channel