From 88af7a818f2ef3c45c4e849512ca1f6289a9dce2 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 12 Feb 2023 19:18:48 +0100 Subject: Centralize templating This makes templating easier and allows to use partial templates. --- main.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'main.go') diff --git a/main.go b/main.go index bdea383..483633c 100644 --- a/main.go +++ b/main.go @@ -6,14 +6,17 @@ import ( "os" "os/signal" "syscall" + "text/template" ) var config RuntimeConfig var db *sql.DB +var templates *template.Template func main() { log.Printf("Started Ceres recipe server.\n") config = GetRuntimeConfig() + templates = setupTemplates() db = setupDatabase() provideShutdown() runServer() -- cgit v1.2.3-70-g09d2