The config field is assigned in both New (line 16) and Register (line 20), but is never actually used in the module. Consider removing this unused field to simplify the code.
}
// New creates a new status module
func New(deps *types.Dependencies) *StatusModule { return &StatusModule{} }
// Register registers /status.
func (m *StatusModule) Register(cmds map[string]*types.Command, deps *types.Dependencies) {
Originally posted by @Copilot in BagToad/BestPal#65 (comment)