package workers // Worker 接口描述了不同类的共同行为 type Worker interface { CheckPermission() string GetMsg() string SendMsg(msg string) bool }