adding notifications

This commit is contained in:
Ramiro Paz
2026-03-11 12:40:24 -03:00
parent 48373b6855
commit 50c7f98c37
2 changed files with 9 additions and 3 deletions

View File

@ -40,7 +40,7 @@ func NewManager(cfg app.FIXConfig, orderStore domain.OrderStore, notify domain.N
}
func (m *Manager) Start() error {
fixApp := newApplication()
fixApp := newApplication(m.notify)
fixApp.onLogon = m.onLogon
fixApp.onLogout = m.onLogout
m.app = fixApp