diff --git a/apier/v1/core.go b/apier/v1/core.go index a3aa34157..831cd7065 100644 --- a/apier/v1/core.go +++ b/apier/v1/core.go @@ -95,3 +95,7 @@ func (cS *CoreSv1) StopMemoryProfiling(_ *utils.TenantWithAPIOpts, reply *string *reply = utils.OK return nil } + +func (cS *CoreSv1) Panic(_ *utils.TenantWithAPIOpts, _ *string) error { + panic("This is a panic test!") +}