1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! eggbug-rs is a bot library for [cohost.org](https://cohost.org/rc/welcome), providing an
//! interface to create, read, edit, and delete posts.
//!
//! ```no_run
//! use eggbug::{Post, Session};
//!
//! # async fn f() -> Result<(), Box<dyn std::error::Error>> {
//! // Log in
//! let session = Session::login("eggbug@website.invalid", "hunter2").await?;
//!
//! // Describe a post
//! let mut post = Post {
//! headline: "hello from eggbug-rs!".into(),
//! markdown: "wow it's like a website in here".into(),
//! ..Default::default()
//! };
//!
//! // Create the post on the eggbug page
//! let id = session.create_post("eggbug", &mut post).await?;
//!
//! // Oh wait we want to make that a link
//! post.markdown = "wow it's [like a website in here](https://cohost.org/hthrflwrs/post/25147-empty)".into();
//! session.edit_post("eggbug", id, &mut post).await?;
//!
//! // Good job!
//! # Ok(())
//! # }
//! ```
//!
//! # License
//!
//! eggbug-rs is released under the terms of the Anti-Capitalist Software License, version 1.4.
pub use crate;
pub use crate;
pub use crateClient;
pub use crateError;
pub use crate;
pub use crateSession;