1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![cfg_attr(feature = "yew", recursion_limit = "1024")]

pub mod html;
#[cfg(feature = "tera")]
pub mod tera;
#[cfg(feature = "yew")]
pub mod yew;

mod pager;
mod pagination;

pub use pagination::Pagination;

pub use pager::Pager;