sq/libsq/driver/scratch.go
Neil O'Toole 2831211ae9
Yet more linting (#114)
* wip: bunch o' linting

* bunch more linting
2022-12-17 17:51:33 -07:00

12 lines
316 B
Go

package driver
import (
"github.com/neilotoole/lg"
"github.com/neilotoole/sq/libsq/source"
)
// ScratchSrcFunc is a function that returns a scratch source.
// The caller is responsible for invoking cleanFn.
type ScratchSrcFunc func(log lg.Log, name string) (src *source.Source, cleanFn func() error, err error)