Files
herolib/lib/develop/codewalker/model.v
2025-08-21 12:05:20 +02:00

17 lines
204 B
V

module codewalker
pub struct CWError {
pub:
message string
linenr int
category string
}
pub struct FMError {
pub:
message string
linenr int // is optional
category string
filename string
}