mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
10 lines
237 B
V
10 lines
237 B
V
module ui
|
|
|
|
pub fn init(cfg Config) &Context {
|
|
panic("term.input: error: Windows support isn't implemented yet")
|
|
return &Context{}
|
|
}
|
|
|
|
pub fn (mut ctx Context) run() {
|
|
panic("term.input: error: Windows support isn't implemented yet")
|
|
}
|