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
//! # ventureinkorea
//!
//! Async Rust client for the [VentureInKorea](https://ventureinkorea.com) REST API.
//!
//! Access Korean venture-certified companies (벤처인증기업), startup ecosystem
//! glossary terms, blog posts, and unified search across the platform.
//! Available in 4 languages (Korean, English, Japanese, Chinese).
//!
//! ## Quick Start
//!
//! ```no_run
//! use ventureinkorea::VentureInKorea;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), ventureinkorea::VentureError> {
//! let client = VentureInKorea::new();
//!
//! // Search Korean venture content
//! let results = client.search("AI startup").await?;
//! println!("Found {} results", results.total);
//!
//! // List glossary terms
//! let terms = client.list_terms(None).await?;
//! for term in &terms.results {
//! println!("{}: {}", term.slug, term.name);
//! }
//!
//! Ok(())
//! }
//! ```
pub use ;
pub use VentureError;
pub use *;