├── .gitignore ├── Readme.md └── isokit.go /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | *.swo 4 | *.tmp 5 | *.out 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | # IsoKit 4 | 5 | **The isokit package has moved to [https://go.isomorphicgo.org/go/isokit](https://go.isomorphicgo.org/go/isokit)** 6 | 7 | The isokit package provides common functionality for developing Isomorphic Go applications. 8 | 9 | ## Installation 10 | 11 | IsoKit requires GopherJS. 12 | 13 | ### Get IsoKit 14 | `go get -u go.isomorphicgo.org/go/isokit` 15 | 16 | 17 | ## The Isomorphic Go Project 18 | Additional information on Isomorphic Go applications can be found at the [Isomorphic Go Website](http://isomorphicgo.org). 19 | -------------------------------------------------------------------------------- /isokit.go: -------------------------------------------------------------------------------- 1 | // The Isomorphic Go Project 2 | // Copyright (c) Wirecog, LLC. All rights reserved. 3 | // Use of this source code is governed by a BSD-style 4 | // license, which can be found in the LICENSE file. 5 | 6 | // Package isokit provides common isomorphic functionality intended to be used 7 | // in an Isomorphic Go web application. 8 | package isokit 9 | 10 | import ( 11 | "fmt" 12 | "os" 13 | ) 14 | 15 | var ( 16 | WebAppRoot = "" 17 | ) 18 | 19 | func init() { 20 | 21 | fmt.Println("The isokit package has moved:\t 'go get -u go.isomorphicgo.org/go/isokit'") 22 | 23 | os.Exit(1) 24 | } 25 | --------------------------------------------------------------------------------