2014-04-26 09:18:56 +00:00
|
|
|
package Templates
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
"html/template"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
var (
|
2015-06-17 15:44:52 +00:00
|
|
|
templates *template.Template = nil // The in-memory cache for the templates
|
|
|
|
senderName LM.Sender = `System::Templates` // This is the name for logging event from this package
|
|
|
|
zipData []byte = nil // The in-memory cache of the ZIP file
|
|
|
|
isInit bool = false // State, if the init event is done
|
2014-04-26 09:18:56 +00:00
|
|
|
)
|