Implemented package imports

This commit is contained in:
2024-07-18 18:08:30 +02:00
parent fa373e7dc2
commit b34470a97d
21 changed files with 510 additions and 353 deletions

View 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
}