aboutsummaryrefslogtreecommitdiff
path: root/src/pages/repo/mod.rs
blob: 7d90c97b03e13c7cb4575d7c54a711da5f69d192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The repository page subtree

mod about;
mod details;

pub use about::render as about;
pub use details::render as details;

use crate::types::RepoData;

/// A template wrapper for repository data
pub(self) struct RepoWrapper {
    pub(self) data: RepoData,
    pub(self) logo: String,
}