summaryrefslogtreecommitdiff
path: root/src/handlers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/handlers.rs')
-rw-r--r--src/handlers.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/handlers.rs b/src/handlers.rs
index aa36e15..576547d 100644
--- a/src/handlers.rs
+++ b/src/handlers.rs
@@ -2,6 +2,7 @@ use crate::posts::abstractions::repo::PostRepo;
use crate::tutors::abstractions::tutor_repo::TutorRepo;
use crate::views::about::AboutView;
use crate::views::brochure::BrochureTemplate;
+use crate::views::camp::CampTemplate;
use crate::views::highered::HigherEdTemplate;
use crate::views::index::IndexTemplate;
use crate::views::k12::K12Template;
@@ -59,3 +60,7 @@ pub async fn highered_handler() -> Html<String> {
pub async fn pro_handler() -> Html<String> {
Html(ProTemplate {}.render().unwrap())
}
+
+pub async fn camp_handler() -> Html<String> {
+ Html(CampTemplate {}.render().unwrap())
+}