1
0
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:
spaceface777
2020-11-12 12:12:51 +01:00
committed by GitHub
parent 4ddfff287c
commit 24f743ee12
11 changed files with 1434 additions and 1 deletions

View 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")
}