Modify: package name

pull/247/head
HFO4 5 years ago
parent 79caf635f9
commit e05ba1030c

@ -1,4 +1,4 @@
module cloudreve
module github.com/HFO4/cloudreve
go 1.12

@ -1,9 +1,9 @@
package main
import (
"cloudreve/models"
"cloudreve/pkg/conf"
"cloudreve/routers"
"github.com/HFO4/cloudreve/models"
"github.com/HFO4/cloudreve/pkg/conf"
"github.com/HFO4/cloudreve/routers"
"github.com/gin-gonic/gin"
"math/rand"
"time"

@ -1,8 +1,8 @@
package middleware
import (
"cloudreve/models"
"cloudreve/pkg/serializer"
"github.com/HFO4/cloudreve/models"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/gin-contrib/sessions"
"github.com/gin-gonic/gin"
)

@ -1,10 +1,10 @@
package middleware
import (
"cloudreve/models"
"cloudreve/pkg/util"
"database/sql"
"github.com/DATA-DOG/go-sqlmock"
"github.com/HFO4/cloudreve/models"
"github.com/HFO4/cloudreve/pkg/util"
"github.com/gin-gonic/gin"
"github.com/jinzhu/gorm"
"github.com/stretchr/testify/assert"

@ -1,7 +1,7 @@
package middleware
import (
"cloudreve/pkg/util"
"github.com/HFO4/cloudreve/pkg/util"
"github.com/gin-gonic/gin"
)

@ -1,9 +1,9 @@
package model
import (
"cloudreve/pkg/conf"
"cloudreve/pkg/util"
"fmt"
"github.com/HFO4/cloudreve/pkg/conf"
"github.com/HFO4/cloudreve/pkg/util"
"github.com/jinzhu/gorm"
"time"

@ -1,8 +1,8 @@
package model
import (
"cloudreve/pkg/conf"
"cloudreve/pkg/util"
"github.com/HFO4/cloudreve/pkg/conf"
"github.com/HFO4/cloudreve/pkg/util"
"github.com/jinzhu/gorm"
"github.com/mcuadros/go-version"
"io/ioutil"

@ -1,10 +1,10 @@
package model
import (
"cloudreve/pkg/util"
"crypto/sha1"
"encoding/hex"
"encoding/json"
"github.com/HFO4/cloudreve/pkg/util"
"github.com/jinzhu/gorm"
"github.com/pkg/errors"
"strings"

@ -1,7 +1,7 @@
package conf
import (
"cloudreve/pkg/util"
"github.com/HFO4/cloudreve/pkg/util"
"github.com/go-ini/ini"
"github.com/mojocn/base64Captcha"
"gopkg.in/go-playground/validator.v8"

@ -1,7 +1,7 @@
package filesystem
import (
"cloudreve/models"
"github.com/HFO4/cloudreve/models"
"io"
)

@ -1,7 +1,7 @@
package filesystem
import (
"cloudreve/pkg/util"
"github.com/HFO4/cloudreve/pkg/util"
"path/filepath"
)

@ -1,6 +1,6 @@
package serializer
import "cloudreve/models"
import "github.com/HFO4/cloudreve/models"
// CheckLogin 检查登录
func CheckLogin() Response {

@ -1,9 +1,9 @@
package controllers
import (
"cloudreve/models"
"cloudreve/pkg/serializer"
"cloudreve/service/file"
"github.com/HFO4/cloudreve/models"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/HFO4/cloudreve/service/file"
"github.com/gin-gonic/gin"
)

@ -1,9 +1,9 @@
package controllers
import (
"cloudreve/pkg/conf"
"cloudreve/pkg/serializer"
"cloudreve/pkg/util"
"github.com/HFO4/cloudreve/pkg/conf"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/HFO4/cloudreve/pkg/util"
"github.com/gin-gonic/gin"
"github.com/mojocn/base64Captcha"
)

@ -1,9 +1,9 @@
package controllers
import (
"cloudreve/models"
"cloudreve/pkg/serializer"
"encoding/json"
"github.com/HFO4/cloudreve/models"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/gin-gonic/gin"
"gopkg.in/go-playground/validator.v8"
)

@ -1,9 +1,9 @@
package controllers
import (
"cloudreve/pkg/serializer"
"encoding/json"
"errors"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/stretchr/testify/assert"
"gopkg.in/go-playground/validator.v8"
"testing"

@ -1,7 +1,7 @@
package controllers
import (
"cloudreve/pkg/serializer"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/gin-gonic/gin"
)

@ -1,8 +1,8 @@
package controllers
import (
"cloudreve/pkg/serializer"
"cloudreve/service/user"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/HFO4/cloudreve/service/user"
"github.com/gin-gonic/gin"
)

@ -1,9 +1,9 @@
package routers
import (
"cloudreve/middleware"
"cloudreve/pkg/conf"
"cloudreve/routers/controllers"
"github.com/HFO4/cloudreve/middleware"
"github.com/HFO4/cloudreve/pkg/conf"
"github.com/HFO4/cloudreve/routers/controllers"
"github.com/gin-gonic/gin"
)

@ -2,13 +2,13 @@ package routers
import (
"bytes"
"cloudreve/middleware"
"cloudreve/models"
"cloudreve/pkg/serializer"
"database/sql"
"encoding/json"
"errors"
"github.com/DATA-DOG/go-sqlmock"
"github.com/HFO4/cloudreve/middleware"
"github.com/HFO4/cloudreve/models"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/gin-gonic/gin"
"github.com/jinzhu/gorm"
"github.com/mojocn/base64Captcha"

@ -1,10 +1,10 @@
package file
import (
"cloudreve/models"
"cloudreve/pkg/filesystem"
"cloudreve/pkg/filesystem/local"
"cloudreve/pkg/serializer"
"github.com/HFO4/cloudreve/models"
"github.com/HFO4/cloudreve/pkg/filesystem"
"github.com/HFO4/cloudreve/pkg/filesystem/local"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/gin-gonic/gin"
"mime/multipart"
)

@ -1,10 +1,10 @@
package user
import (
"cloudreve/models"
"cloudreve/pkg/serializer"
"cloudreve/pkg/util"
"fmt"
"github.com/HFO4/cloudreve/models"
"github.com/HFO4/cloudreve/pkg/serializer"
"github.com/HFO4/cloudreve/pkg/util"
"github.com/gin-gonic/gin"
"github.com/mojocn/base64Captcha"
)

Loading…
Cancel
Save