q/src/fs/Import.go
2025-02-25 17:16:09 +01:00

12 lines
202 B
Go

package fs
import "git.urbach.dev/cli/q/src/token"
// Import represents an import statement in a file.
type Import struct {
Path string
FullPath string
Position token.Position
Used bool
}