Implemented package imports
This commit is contained in:
14
src/build/scanner/Scanner.go
Normal file
14
src/build/scanner/Scanner.go
Normal file
@ -0,0 +1,14 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user