Browse Source

change imports to match new forks

master
John Robinson 4 years ago
parent
commit
a7fcd2b170
No account linked to committer's email address
3 changed files with 8 additions and 8 deletions
  1. +6
    -6
      doc.go
  2. +1
    -1
      env.go
  3. +1
    -1
      env_test.go

+ 6
- 6
doc.go View File

## Installation ## Installation


```shell ```shell
$ go get -v github.com/goanywhere/env
$ go get -v git.thevis.us/skepto/env
``` ```


## Usage ## Usage
package main package main


import ( import (
"github.com/goanywhere/env"
"github.com/goanywhere/rex"
"git.thevis.us/skepto/env"
"git.thevis.us/skepto/rex"
) )


func index (ctx *rex.Context) { func index (ctx *rex.Context) {
``` go ``` go
import ( import (
"fmt" "fmt"
"github.com/goanywhere/env"
"git.thevis.us/skepto/env"
) )


func main() { func main() {


import ( import (
"fmt" "fmt"
"github.com/goanywhere/env"
"git.thevis.us/skepto/env"
) )


type Spec struct { type Spec struct {
import ( import (
"fmt" "fmt"


"github.com/goanywhere/env"
"git.thevis.us/skepto/env"
) )


func main() { func main() {

+ 1
- 1
env.go View File

"strconv" "strconv"
"strings" "strings"


"git.thevis.us/skepto/fs"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
"github.com/goanywhere/fs"
) )


const tag string = "env" const tag string = "env"

+ 1
- 1
env_test.go View File

"os" "os"
"testing" "testing"


"github.com/goanywhere/crypto"
"git.thevis.us/skepto/crypto"
. "github.com/smartystreets/goconvey/convey" . "github.com/smartystreets/goconvey/convey"
) )



Loading…
Cancel
Save