mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-29 10:21:01 -06:00
11 lines
137 B
Go
11 lines
137 B
Go
|
package tfdiags
|
||
|
|
||
|
type SourceRange struct {
|
||
|
Filename string
|
||
|
Start, End SourcePos
|
||
|
}
|
||
|
|
||
|
type SourcePos struct {
|
||
|
Line, Column, Byte int
|
||
|
}
|