From 884e51b84f20c3628445e9e774e24dcd95ec0864 Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Mon, 11 Mar 2024 18:28:25 -0700 Subject: [PATCH] add annual link --- src/handlers/handlers.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/handlers/handlers.rs b/src/handlers/handlers.rs index ad253e9..b9fe1b7 100644 --- a/src/handlers/handlers.rs +++ b/src/handlers/handlers.rs @@ -35,6 +35,7 @@ lazy_static! { pub async fn get_signup() -> impl IntoResponse { SignupPage { monthly_link: Some((*MONTHLY_LINK).to_string()), + annual_link: Some((&*ANNUAL_LINK).to_string()), ..Default::default() } }