posthog_rs/lib.rs
1mod client;
2mod error;
3mod event;
4
5const API_ENDPOINT: &str = "https://us.i.posthog.com/capture/";
6
7// Public interface - any change to this is breaking!
8// Client
9pub use client::client;
10pub use client::Client;
11pub use client::ClientOptions;
12
13// Error
14pub use error::Error;
15
16// Event
17pub use event::Event;