Procházet zdrojové kódy

change imports to match new forks

master
John Robinson před 4 roky
rodič
revize
a7fcd2b170
Žádný účet není propojen s e-mailovou adresou tvůrce revize
3 změnil soubory, kde provedl 8 přidání a 8 odebrání
  1. +6
    -6
      doc.go
  2. +1
    -1
      env.go
  3. +1
    -1
      env_test.go

+ 6
- 6
doc.go Zobrazit soubor

## 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 Zobrazit soubor

"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 Zobrazit soubor

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


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



Načítá se…
Zrušit
Uložit