mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
term: add term.ui
module (part 2) (#6798)
This commit is contained in:
10
vlib/term/ui/input_windows.c.v
Normal file
10
vlib/term/ui/input_windows.c.v
Normal file
@ -0,0 +1,10 @@
|
||||
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")
|
||||
}
|
Reference in New Issue
Block a user