Ocean/StaticFiles/Variables.go

13 lines
514 B
Go
Raw Normal View History

package StaticFiles
import (
LM "github.com/SommerEngineering/Ocean/Log/Meta"
)
var (
2015-06-17 15:44:52 +00:00
senderName LM.Sender = `System::StaticFiles` // This is the name for logging event from this package
startFile4Map2Root string = `index.html` // The default filename in case of mapping static files to the root
logStaticFileRequests bool = false // Logging each access?
zipData []byte = nil // The in-memory cache of the data
)