Ocean/CustomerDB/Shutdown.go

16 lines
406 B
Go
Raw Normal View History

package CustomerDB
import (
"github.com/SommerEngineering/Ocean/Log"
LM "github.com/SommerEngineering/Ocean/Log/Meta"
)
2015-06-17 15:44:52 +00:00
// The shutdown type.
type ShutdownFunction struct {
}
2015-06-17 15:44:52 +00:00
// The shutdown function for this package.
func (a ShutdownFunction) Shutdown() {
Log.LogShort(senderName, LM.CategoryAPP, LM.LevelWARN, LM.MessageNameSHUTDOWN, `Close now the customer database connection.`)
}