Skip to content

Instantly share code, notes, and snippets.

View Tevin-Isaac's full-sized avatar
💭
Brain Storming💭

Tevin-Isaac Tevin-Isaac

💭
Brain Storming💭
View GitHub Profile
#[derive(candid::CandidType, Clone)]
struct Mentor {
id: u64,
name: String,
interests: Vec<String>,
passions: Vec<String>,
location: String, // Location can be the ward level
}
#[derive(candid::CandidType, Clone)]