()
| 565 | } |
| 566 | |
| 567 | func Save() { |
| 568 | |
| 569 | pluginCt := 0 |
| 570 | for _, p := range registry { |
| 571 | |
| 572 | if p.Callbacks.onSave != nil { |
| 573 | p.Callbacks.onSave() |
| 574 | pluginCt++ |
| 575 | } |
| 576 | |
| 577 | } |
| 578 | mudlog.Info("plugins", "saveCount", pluginCt) |
| 579 | } |
| 580 | |
| 581 | func GetPluginRegistry() pluginRegistry { |
| 582 | return registry |
no test coverage detected