From 10d90f04d8d91f06270ea87fada5d76afcee4d0a Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Thu, 16 Aug 2018 20:05:56 -0700 Subject: [PATCH] Add '// +build ignore' to examples --- _example/table.go | 2 ++ _example/wrappar.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/_example/table.go b/_example/table.go index fb4991b..3bd352b 100644 --- a/_example/table.go +++ b/_example/table.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a MIT license that can // be found in the LICENSE file. +// +build ignore + package main import "github.com/gizak/termui" diff --git a/_example/wrappar.go b/_example/wrappar.go index 07e842d..4f6d18e 100644 --- a/_example/wrappar.go +++ b/_example/wrappar.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a MIT license that can // be found in the LICENSE file. +// +build ignore + package main import ui "github.com/gizak/termui"