Mass s&r: iron-io -> kumokit

This commit is contained in:
Travis Reeder
2017-04-19 09:49:12 -06:00
parent 32278fe2e0
commit 615ae5c36f
108 changed files with 288 additions and 288 deletions

View File

@@ -3,7 +3,7 @@ package database
import (
"errors"
"github.com/iron-io/functions/examples/blog/models"
"github.com/kumokit/functions/examples/blog/models"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)

View File

@@ -1,7 +1,7 @@
package database
import (
"github.com/iron-io/functions/examples/blog/models"
"github.com/kumokit/functions/examples/blog/models"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)

View File

@@ -5,9 +5,9 @@ import (
"fmt"
"os"
"github.com/iron-io/functions/examples/blog/database"
"github.com/iron-io/functions/examples/blog/models"
"github.com/iron-io/functions/examples/blog/routes"
"github.com/kumokit/functions/examples/blog/database"
"github.com/kumokit/functions/examples/blog/models"
"github.com/kumokit/functions/examples/blog/routes"
)
var noAuth = map[string]interface{}{}

View File

@@ -1,4 +1,4 @@
package: github.com/iron-io/functions/examples/blog
package: github.com/kumokit/functions/examples/blog
import:
- package: github.com/dgrijalva/jwt-go
version: ^3.0.0

View File

@@ -5,8 +5,8 @@ import (
"fmt"
"os"
"github.com/iron-io/functions/examples/blog/database"
"github.com/iron-io/functions/examples/blog/models"
"github.com/kumokit/functions/examples/blog/database"
"github.com/kumokit/functions/examples/blog/models"
)
func HandlePostCreate(db *database.Database, auth map[string]interface{}) {

View File

@@ -1,7 +1,7 @@
package route
import (
"github.com/iron-io/functions/examples/blog/database"
"github.com/kumokit/functions/examples/blog/database"
"gopkg.in/mgo.v2/bson"
)

View File

@@ -3,7 +3,7 @@ package route
import (
"os"
"github.com/iron-io/functions/examples/blog/database"
"github.com/kumokit/functions/examples/blog/database"
)
func HandlePostRead(db *database.Database, auth map[string]interface{}) {

View File

@@ -8,8 +8,8 @@ import (
"time"
"github.com/dgrijalva/jwt-go"
"github.com/iron-io/functions/examples/blog/database"
"github.com/iron-io/functions/examples/blog/models"
"github.com/kumokit/functions/examples/blog/database"
"github.com/kumokit/functions/examples/blog/models"
"golang.org/x/crypto/bcrypt"
)