Common isomorphic functionality in one kit.

isokit.go 569B

1234567891011121314151617181920212223
  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. // Package isokit provides common isomorphic functionality intended to be used
  6. // in an Isomorphic Go web application.
  7. package isokit
  8. import (
  9. "fmt"
  10. "os"
  11. )
  12. var (
  13. WebAppRoot = ""
  14. )
  15. func init() {
  16. fmt.Println("The isokit package has moved to https://go.isomorphicgo.org.")
  17. fmt.Print("You can 'go get' it like so:\t", "'go get -u go.isomorphicgo.org/go/isokit'")
  18. os.Exit(1)
  19. }