2014-04-26 09:18:56 +00:00
|
|
|
package NumGen
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
"github.com/SommerEngineering/Ocean/Log"
|
|
|
|
LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
type ShutdownFunction struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a ShutdownFunction) Shutdown() {
|
|
|
|
Log.LogShort(senderName, LM.CategoryAPP, LM.LevelWARN, LM.MessageNameSHUTDOWN, `Shutting down the number generator.`)
|
2014-06-04 19:41:18 +00:00
|
|
|
db.Logout()
|
|
|
|
dbSession.Close()
|
2014-04-26 09:18:56 +00:00
|
|
|
}
|