mirror of
https://github.com/kataras/iris.git
synced 2025-12-18 02:17:05 +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:
@@ -1,10 +1,10 @@
|
||||
package storeapi
|
||||
|
||||
import (
|
||||
"github.com/kataras/iris/_examples/tutorial/mongodb/httputil"
|
||||
"github.com/kataras/iris/_examples/tutorial/mongodb/store"
|
||||
"github.com/kataras/iris/v12/_examples/tutorial/mongodb/httputil"
|
||||
"github.com/kataras/iris/v12/_examples/tutorial/mongodb/store"
|
||||
|
||||
"github.com/kataras/iris"
|
||||
"github.com/kataras/iris/v12"
|
||||
)
|
||||
|
||||
type MovieHandler struct {
|
||||
|
||||
@@ -11,7 +11,7 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/kataras/iris"
|
||||
"github.com/kataras/iris/v12"
|
||||
)
|
||||
|
||||
var validStackFuncs = []func(string) bool{
|
||||
|
||||
@@ -11,13 +11,13 @@ import (
|
||||
"os"
|
||||
|
||||
// APIs
|
||||
storeapi "github.com/kataras/iris/_examples/tutorial/mongodb/api/store"
|
||||
storeapi "github.com/kataras/iris/v12/_examples/tutorial/mongodb/api/store"
|
||||
|
||||
//
|
||||
"github.com/kataras/iris/_examples/tutorial/mongodb/env"
|
||||
"github.com/kataras/iris/_examples/tutorial/mongodb/store"
|
||||
"github.com/kataras/iris/v12/_examples/tutorial/mongodb/env"
|
||||
"github.com/kataras/iris/v12/_examples/tutorial/mongodb/store"
|
||||
|
||||
"github.com/kataras/iris"
|
||||
"github.com/kataras/iris/v12"
|
||||
|
||||
"go.mongodb.org/mongo-driver/mongo"
|
||||
"go.mongodb.org/mongo-driver/mongo/options"
|
||||
|
||||
Reference in New Issue
Block a user