12 lines
163 B
Go
12 lines
163 B
Go
package alert
|
|
|
|
import (
|
|
"mini-chat/internal/proposal"
|
|
)
|
|
|
|
func NotifyHandler() func(msg *proposal.AlertMessage) {
|
|
return func(msg *proposal.AlertMessage) {
|
|
|
|
}
|
|
}
|