From 1ce40d7581bac2b776d1e47ec49c03c0fcc7fdc1 Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Wed, 24 Jun 2015 18:40:18 +0300 Subject: Godeps: remove mist remnants, add termui deps --- .../_workspace/src/github.com/gizak/termui/doc.go | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Godeps/_workspace/src/github.com/gizak/termui/doc.go (limited to 'Godeps/_workspace/src/github.com/gizak/termui/doc.go') diff --git a/Godeps/_workspace/src/github.com/gizak/termui/doc.go b/Godeps/_workspace/src/github.com/gizak/termui/doc.go new file mode 100644 index 000000000..43f886f55 --- /dev/null +++ b/Godeps/_workspace/src/github.com/gizak/termui/doc.go @@ -0,0 +1,27 @@ +// Copyright 2015 Zack Guo . All rights reserved. +// Use of this source code is governed by a MIT license that can +// be found in the LICENSE file. + +/* +Package termui is a library designed for creating command line UI. For more info, goto http://github.com/gizak/termui + +A simplest example: + package main + + import ui "github.com/gizak/termui" + + func main() { + if err:=ui.Init(); err != nil { + panic(err) + } + defer ui.Close() + + g := ui.NewGauge() + g.Percent = 50 + g.Width = 50 + g.Border.Label = "Gauge" + + ui.Render(g) + } +*/ +package termui -- cgit