From a50ed86a86c6a2643346761eac95a152b2875a85 Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Sun, 5 May 2024 01:30:05 +0200 Subject: [PATCH] Add Template and Task Constants --- constants/constants.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/constants/constants.go b/constants/constants.go index d4cd785..6521c44 100644 --- a/constants/constants.go +++ b/constants/constants.go @@ -5,3 +5,11 @@ const NAME_HEADER = "morffix-name" const UUID_HEADER = "morffix-uuid" const INDEX_TEMPLATE_NAME = "index.tmpl" +const LIBRARIES_TEMPLATE_NAME = "libraries.tmpl" +const LIBRARY_TEMPLATE_NAME = "library.tmpl" +const MESSAGE_TEMPLATE_NAME = "message.tmpl" +const TASK_TEMPLATE_NAME = "tasks.tmpl" + +const ( + HEALTHCHECK_TASK_TYPE = iota +)