From f1ce1baf5623907d7056fc71a6e4232447f01cc5 Mon Sep 17 00:00:00 2001 From: Mark Dittmer Date: Mon, 17 Sep 2018 13:52:43 -0400 Subject: [PATCH] Fix copypasta --- terminal_appengine.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/terminal_appengine.go b/terminal_appengine.go index 2f34402..72f679c 100644 --- a/terminal_appengine.go +++ b/terminal_appengine.go @@ -1,5 +1,5 @@ // Based on ssh/terminal: -// Copyright 2013 The Go Authors. All rights reserved. +// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. @@ -7,5 +7,7 @@ package logrus +import "io" + func initTerminal(w io.Writer) { }