diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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() |