还是修改导包顺序

This commit is contained in:
dushixiang 2021-03-19 21:03:16 +08:00
parent 19ddb9ad97
commit df47f8c323
4 changed files with 21 additions and 16 deletions

12
main.go
View File

@ -3,15 +3,17 @@ package main
import ( import (
"bytes" "bytes"
"fmt" "fmt"
"io"
"os"
"next-terminal/server/api"
"next-terminal/server/config"
"next-terminal/server/global"
nested "github.com/antonfisher/nested-logrus-formatter" nested "github.com/antonfisher/nested-logrus-formatter"
"github.com/labstack/gommon/log" "github.com/labstack/gommon/log"
"github.com/robfig/cron/v3" "github.com/robfig/cron/v3"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"io"
"next-terminal/server/api"
"next-terminal/server/config"
"next-terminal/server/global"
"os"
) )
const Version = "v0.3.4" const Version = "v0.3.4"

View File

@ -1,10 +1,11 @@
package api package api
import ( import (
"github.com/labstack/echo/v4"
"next-terminal/server/constant" "next-terminal/server/constant"
"next-terminal/server/global" "next-terminal/server/global"
"next-terminal/server/model" "next-terminal/server/model"
"github.com/labstack/echo/v4"
) )
type H map[string]interface{} type H map[string]interface{}

View File

@ -4,9 +4,10 @@ import (
"strconv" "strconv"
"strings" "strings"
"next-terminal/server/global"
"github.com/labstack/echo/v4" "github.com/labstack/echo/v4"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"next-terminal/server/global"
) )
func LoginLogPagingEndpoint(c echo.Context) error { func LoginLogPagingEndpoint(c echo.Context) error {

View File

@ -2,25 +2,26 @@ package api
import ( import (
"fmt" "fmt"
"github.com/patrickmn/go-cache"
"github.com/sirupsen/logrus"
"gorm.io/driver/mysql"
"gorm.io/driver/sqlite"
"gorm.io/gorm"
"gorm.io/gorm/logger"
"net/http" "net/http"
"strconv"
"strings"
"time"
"next-terminal/server/global" "next-terminal/server/global"
"next-terminal/server/log" "next-terminal/server/log"
"next-terminal/server/model" "next-terminal/server/model"
"next-terminal/server/repository" "next-terminal/server/repository"
"next-terminal/server/service" "next-terminal/server/service"
"next-terminal/server/utils" "next-terminal/server/utils"
"strconv"
"strings"
"time"
"github.com/labstack/echo/v4" "github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware" "github.com/labstack/echo/v4/middleware"
"github.com/patrickmn/go-cache"
"github.com/sirupsen/logrus"
"gorm.io/driver/mysql"
"gorm.io/driver/sqlite"
"gorm.io/gorm"
"gorm.io/gorm/logger"
) )
const Token = "X-Auth-Token" const Token = "X-Auth-Token"