Skip to content

Commit

Permalink
go-aah/aah#200 base import path updated to wip aahframe.work/aah
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm committed Nov 2, 2018
1 parent df57e92 commit 8ed092e
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 33 deletions.
12 changes: 6 additions & 6 deletions aah/aah.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ import (
"path/filepath"
"sort"

"aahframework.org/aruntime"
"aahframework.org/config"
"aahframework.org/essentials"
"aahframework.org/log"
"aahframe.work/aah/aruntime"
"aahframe.work/aah/config"
"aahframe.work/aah/essentials"
"aahframe.work/aah/log"
"gopkg.in/urfave/cli.v1"
)

const (
permRWXRXRX = 0755
permRWRWRW = 0666
importPrefix = "aahframework.org"
aahImportPath = "aahframework.org"
importPrefix = "aahframe.work/aah"
aahImportPath = "aahframe.work/aah"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion aah/app_tmpl.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"
"text/template"

"aahframework.org/essentials"
"aahframe.work/aah/essentials"
)

//‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
Expand Down
8 changes: 4 additions & 4 deletions aah/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import (
"path/filepath"
"strings"

"aahframework.org"
"aahframework.org/config"
"aahframework.org/essentials"
"aahframework.org/log"
"aahframe.work/aah"
"aahframe.work/aah/config"
"aahframe.work/aah/essentials"
"aahframe.work/aah/log"
"gopkg.in/urfave/cli.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion aah/clean.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package main

import (
"aahframework.org"
"aahframe.work/aah"
"gopkg.in/urfave/cli.v1"
)

Expand Down
12 changes: 6 additions & 6 deletions aah/embed.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import (
"text/template"
"time"

"aahframework.org"
"aahframework.org/essentials"
"aahframework.org/vfs"
"aahframe.work/aah"
"aahframe.work/aah/essentials"
"aahframe.work/aah/vfs"
)

// Standard frame type MTU size is 1500 bytes so 1400 bytes would make sense
Expand Down Expand Up @@ -232,9 +232,9 @@ package main
import ({{ if .Mode }}
"time"{{ end }}
"aahframework.org/aah.v0"
"aahframework.org/log.v0"{{ if .Mode }}
"aahframework.org/vfs.v0"{{ end }}
"aahframe.work/aah"
"aahframe.work/aah/log"{{ if .Mode }}
"aahframe.work/aah/vfs"{{ end }}
)
func init() {
Expand Down
6 changes: 3 additions & 3 deletions aah/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"strings"
"time"

"aahframework.org"
"aahframework.org/essentials"
"aahframework.org/log"
"aahframe.work/aah"
"aahframe.work/aah/essentials"
"aahframe.work/aah/log"
"gopkg.in/urfave/cli.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion aah/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"path/filepath"
"strings"

"aahframework.org/essentials"
"aahframe.work/aah/essentials"
"gopkg.in/urfave/cli.v1"
)

Expand Down
6 changes: 3 additions & 3 deletions aah/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"path/filepath"
"strings"

"aahframework.org"
"aahframework.org/config"
"aahframework.org/essentials"
"aahframe.work/aah"
"aahframe.work/aah/config"
"aahframe.work/aah/essentials"
"gopkg.in/urfave/cli.v1"
)

Expand Down
4 changes: 2 additions & 2 deletions aah/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"path/filepath"
"strings"

"aahframework.org"
"aahframework.org/essentials"
"aahframe.work/aah"
"aahframe.work/aah/essentials"
"gopkg.in/urfave/cli.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion aah/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func updateAction(c *cli.Context) error {
if gocmdName == "go" {
args = append(args, "-u")
}
args = append(args, path.Join(importPrefix, "tools.v0", "aah"))
args = append(args, path.Join(aahImportPath, "cli", "aah"))
if _, err := execCmd(gocmd, args, false); err != nil {
logFatalf("Unable to update aah to the latest release version: %s", err)
}
Expand Down
8 changes: 4 additions & 4 deletions aah/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
"text/template"
"time"

"aahframework.org"
"aahframework.org/config"
"aahframework.org/essentials"
"aahframework.org/log"
"aahframe.work/aah"
"aahframe.work/aah/config"
"aahframe.work/aah/essentials"
"aahframe.work/aah/log"
"gopkg.in/urfave/cli.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion aah/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"regexp"
"strings"

"aahframework.org/essentials"
"aahframe.work/aah/essentials"
"gopkg.in/urfave/cli.v1"
)

Expand Down

0 comments on commit 8ed092e

Please sign in to comment.