reorder pair action by the order of occurrence (#3082)

This commit is contained in:
frank 2023-01-31 16:47:30 +08:00 committed by GitHub
parent 2fba8c4591
commit 2c38b9e673
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ type Event struct {
type Action int
const (
ActionPairingAccount = iota + 1
ActionConnect = iota + 1
ActionPairingAccount
ActionSyncDevice
ActionConnect
)