Skip to content

Commit

Permalink
omit ZipName on appengine
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlehane committed May 20, 2017
1 parent 61abc7f commit 28c58d8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions zipname.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// Copyright 2015 Richard Lehane.

// +build !appengine

package characterize

import "golang.org/x/text/encoding/charmap"
Expand Down
9 changes: 9 additions & 0 deletions zipname_appengine.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Copyright 2015 Richard Lehane.

// +build appengine

package characterize

func ZipName(in string) string {
return in
}

0 comments on commit 28c58d8

Please sign in to comment.