12 lines
326 B
Go
12 lines
326 B
Go
|
package NumGen
|
||
|
|
||
|
import "github.com/SommerEngineering/Ocean/Log"
|
||
|
import LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
||
|
|
||
|
type ShutdownFunction struct {
|
||
|
}
|
||
|
|
||
|
func (a ShutdownFunction) Shutdown() {
|
||
|
Log.LogShort(senderName, LM.CategoryAPP, LM.LevelWARN, LM.MessageNameSHUTDOWN, `Shutting down the number generator.`)
|
||
|
}
|