Browse Source

fix

pull/1/head
wailovet 6 years ago
parent
commit
627a0f2ab4
  1. 2
      example/app/wstest.go
  2. 6
      example/main.go
  3. 6
      osmanthuswine.go
  4. 2
      src/core/request.go
  5. 2
      src/core/response.go
  6. 2
      src/core/router.go
  7. 2
      src/core/websocket.go
  8. 2
      src/helper/db2struct.go

2
example/app/wstest.go

@ -1,7 +1,7 @@
package app
import (
"github.com/wailovet/osmanthuswine/src/core"
"github.com/ouxuanserver/osmanthuswine/src/core"
"gopkg.in/olahol/melody.v1"
)

6
example/main.go

@ -1,9 +1,9 @@
package main
import (
"github.com/wailovet/osmanthuswine"
"github.com/wailovet/osmanthuswine/example/app"
"github.com/wailovet/osmanthuswine/src/core"
"github.com/ouxuanserver/osmanthuswine"
"github.com/ouxuanserver/osmanthuswine/example/app"
"github.com/ouxuanserver/osmanthuswine/src/core"
)
func main() {

6
osmanthuswine.go

@ -5,9 +5,9 @@ import (
"fmt"
"github.com/go-chi/chi"
"github.com/go-chi/chi/middleware"
"github.com/wailovet/osmanthuswine/src/core"
"github.com/wailovet/osmanthuswine/src/helper"
"github.com/wailovet/osmanthuswine/src/session"
"github.com/ouxuanserver/osmanthuswine/src/core"
"github.com/ouxuanserver/osmanthuswine/src/helper"
"github.com/ouxuanserver/osmanthuswine/src/session"
"github.com/wailovet/overseer"
"github.com/wailovet/overseer/fetcher"
"io/ioutil"

2
src/core/request.go

@ -1,7 +1,7 @@
package core
import (
"github.com/wailovet/osmanthuswine/src/session"
"github.com/ouxuanserver/osmanthuswine/src/session"
"io/ioutil"
"log"
"mime/multipart"

2
src/core/response.go

@ -2,7 +2,7 @@ package core
import (
"encoding/json"
"github.com/wailovet/osmanthuswine/src/session"
"github.com/ouxuanserver/osmanthuswine/src/session"
"net/http"
"strings"
)

2
src/core/router.go

@ -1,7 +1,7 @@
package core
import (
"github.com/wailovet/osmanthuswine/src/interfaces"
"github.com/ouxuanserver/osmanthuswine/src/interfaces"
"log"
"reflect"
"strings"

2
src/core/websocket.go

@ -1,7 +1,7 @@
package core
import (
"github.com/wailovet/osmanthuswine/src/interfaces"
"github.com/ouxuanserver/osmanthuswine/src/interfaces"
"gopkg.in/olahol/melody.v1"
"net/http"
"sync"

2
src/helper/db2struct.go

@ -2,8 +2,8 @@ package helper
import (
"github.com/go-errors/errors"
"github.com/ouxuanserver/osmanthuswine/src/core"
"github.com/wailovet/db2struct"
"github.com/wailovet/osmanthuswine/src/core"
"strconv"
)

Loading…
Cancel
Save