upgrade levelqueue to 0.1.0 (#9192)

This commit is contained in:
Lunny Xiao 2019-11-28 23:37:33 +08:00 committed by GitHub
parent ef9a0370ca
commit 3bdce82ce9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 142 additions and 40 deletions

12
vendor/gitea.com/lunny/levelqueue/error.go generated vendored Normal file
View file

@ -0,0 +1,12 @@
// Copyright 2019 Lunny Xiao. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package levelqueue
import "errors"
var (
// ErrNotFound means no element in queue
ErrNotFound = errors.New("no key found")
)