q/src/build/scanner/Scanner.go

15 lines
249 B
Go

package scanner
import (
"sync"
"git.akyoto.dev/cli/q/src/build/core"
)
// Scanner is used to scan files before the actual compilation step.
type Scanner struct {
functions chan *core.Function
errors chan error
group sync.WaitGroup
}