gorm/ease.go

11 lines
88 B
Go

package gorm
import (
"sync"
)
type easedTask struct {
wg *sync.WaitGroup
db *DB
}