Fix commands cannot be run concurrently


Suppose there are three commands: Test1, Test2, and Test3, they will print:




func (r *Test1) Handle(ctx console.Context) error {
facades.Log().Info("app:test[*] start")
facades.Log().Info("app:test[*] end")
return nil
}






Then register them in the Schedule module and execute once per...