Port dispatcher changes from 1.0 to v0.11

This commit is contained in:
ionutboangiu
2022-09-22 09:16:05 +03:00
committed by Dan Christian Bogos
parent 72ee7ef7ee
commit 895c140209
43 changed files with 1730 additions and 406 deletions

View File

@@ -202,3 +202,8 @@ func (cS *CoreService) StopMemoryProfiling() (err error) {
cS.StopChanMemProf()
return
}
// Panic is used print the Message sent as a panic
func (cS *CoreService) Panic(args *utils.PanicMessageArgs, _ *string) error {
panic(args.Message)
}