Skip to main content

kalshi_pmx/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub mod auth;
4pub mod client;
5pub mod config;
6pub mod error;
7pub mod generated;
8pub mod models;
9pub mod pagination;
10pub mod params;
11pub mod rate_limit;
12pub mod rest;
13pub mod typed;
14pub mod ws;
15
16pub use client::{Kalshi, KalshiBuilder};
17pub use config::{Environment, KalshiConfig};
18pub use error::{Error, Result};