mirror of
https://github.com/tuna/tunasync.git
synced 2025-04-21 04:42:46 +00:00
14 lines
190 B
Go
14 lines
190 B
Go
package worker
|
|
|
|
// put global viables and types here
|
|
|
|
import (
|
|
"gopkg.in/op/go-logging.v1"
|
|
)
|
|
|
|
type empty struct{}
|
|
|
|
const defaultMaxRetry = 2
|
|
|
|
var logger = logging.MustGetLogger("tunasync")
|