This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package observer_mode
// 观察者角色(Observer)接口
type ObserverInterface interface {
// 接收状态更新消息
Update(*Subject)
}