Files
herolib/lib/ai/filemap/model.v
2025-11-25 06:01:26 +01:00

17 lines
213 B
V

module filemap
// BlockKind defines the type of block in parsed content
pub enum BlockKind {
file
filechange
end
}
pub struct FMError {
pub:
message string
linenr int
category string
filename string
}