mirror of
https://github.com/tuna/tunasync.git
synced 2026-07-06 22:32:08 +08:00
14 lines
210 B
Go
14 lines
210 B
Go
package worker
|
|
|
|
// put global variables and types here
|
|
|
|
import (
|
|
tunasync "github.com/tuna/tunasync/internal"
|
|
)
|
|
|
|
type empty struct{}
|
|
|
|
const defaultMaxRetry = 2
|
|
|
|
var logger = tunasync.MustGetLogger("tunasync")
|