summaryrefslogtreecommitdiff
path: root/src/template.rs
diff options
context:
space:
mode:
authorJomar Milan <jomarm@jomarm.com>2026-06-16 00:07:42 -0700
committerJomar Milan <jomarm@jomarm.com>2026-06-16 00:07:42 -0700
commitd624bf54951a3b7481f0f181f5866b21f8d917f5 (patch)
treef0445f19f204869c84150c99b6c42b672df8418a /src/template.rs
parent24c4f77ae0806153436ad18c45669967b5be219b (diff)
Remove serve_template
It felt unnecessary
Diffstat (limited to 'src/template.rs')
-rw-r--r--src/template.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/template.rs b/src/template.rs
index 34fe69a..654da45 100644
--- a/src/template.rs
+++ b/src/template.rs
@@ -8,6 +8,6 @@ pub struct IndexTemplate;
#[derive(Template)]
#[template(path = "session.html")]
pub struct SessionTemplate<'a> {
- pub id: &'a String,
+ pub id: &'a str,
pub session: &'a Session,
}