1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-04 02:37:14 +00:00

obey the vote of @1370 (77-111 at this point) - add import suffix on iris repository

We have to do the same on iris-contrib/examples, iris-contrib/middleware and e.t.c.


Former-commit-id: 0860688158f374bc137bc934b81b26dcd0e10964
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-10-25 01:27:02 +03:00
parent d13f1fe877
commit 3945fa68d1
362 changed files with 649 additions and 653 deletions

View File

@@ -1,7 +1,7 @@
package main
import (
"github.com/kataras/iris"
"github.com/kataras/iris/v12"
)
func main() {

View File

@@ -4,7 +4,7 @@
// Check the 'hosts' file to see how to test the 'mydomain.com' on your local machine.
package main
import "github.com/kataras/iris"
import "github.com/kataras/iris/v12"
const addr = "mydomain.com:80"

View File

@@ -5,7 +5,7 @@ import (
"strings"
"testing"
"github.com/kataras/iris/httptest"
"github.com/kataras/iris/v12/httptest"
)
func TestSubdomainRedirectWWW(t *testing.T) {

View File

@@ -2,7 +2,7 @@
package main
import (
"github.com/kataras/iris"
"github.com/kataras/iris/v12"
)
func main() {

View File

@@ -4,7 +4,7 @@
package main
import (
"github.com/kataras/iris"
"github.com/kataras/iris/v12"
)
// register a dynamic-wildcard subdomain to your server machine(dns/...) first, check ./hosts if you use windows.

View File

@@ -1,7 +1,7 @@
package main
import (
"github.com/kataras/iris"
"github.com/kataras/iris/v12"
)
func newApp() *iris.Application {

View File

@@ -4,7 +4,7 @@ import (
"fmt"
"testing"
"github.com/kataras/iris/httptest"
"github.com/kataras/iris/v12/httptest"
)
type testRoute struct {