mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
11 lines
237 B
V
11 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")
|
|
}
|