TUN-3201: Create base cloudflared UI structure

This commit is contained in:
Rachel Williams
2020-07-24 15:17:17 -07:00
committed by Areg Harutyunyan
parent 0708a49848
commit d8ebde37ca
173 changed files with 31376 additions and 188 deletions

View File

@@ -0,0 +1,25 @@
// Generated automatically. DO NOT HAND-EDIT.
package adm3a
import "github.com/gdamore/tcell/terminfo"
func init() {
// lsi adm3a
terminfo.AddTerminfo(&terminfo.Terminfo{
Name: "adm3a",
Columns: 80,
Lines: 24,
Bell: "\a",
Clear: "\x1a$<1/>",
PadChar: "\x00",
SetCursor: "\x1b=%p1%' '%+%c%p2%' '%+%c",
CursorBack1: "\b",
CursorUp1: "\v",
KeyUp: "\v",
KeyDown: "\n",
KeyRight: "\f",
KeyLeft: "\b",
})
}