make inner type pub so it can be read and created easily in other crates (#4397)

this is for use in SSR pagination in Lemmy-UI-Leptos
upgrade_deps_18
jim-taylor-business 2024-01-24 14:03:31 +00:00 committed by GitHub
parent 20fd4b5869
commit f43d2eca70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ pub struct PostReportView {
#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "full", derive(ts_rs::TS))]
#[cfg_attr(feature = "full", ts(export))]
pub struct PaginationCursor(pub(crate) String);
pub struct PaginationCursor(pub String);
#[skip_serializing_none]
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]