Added errors package
All checks were successful
/ test (push) Successful in 13s

This commit is contained in:
Eduard Urbach 2025-06-19 16:56:30 +02:00
parent 1405d2b8b1
commit b7fdd56a8b
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
6 changed files with 172 additions and 0 deletions

View file

@ -1,8 +1,11 @@
package fs
import "git.urbach.dev/cli/q/src/token"
// File represents a single source file.
type File struct {
Path string
Package string
Bytes []byte
Tokens token.List
}