文件目录调整
This commit is contained in:
parent
1b6950b8d9
commit
e48cf803bb
|
@ -9,9 +9,9 @@ import (
|
|||
"github/fthvgb1/wp-go/helper"
|
||||
cache2 "github/fthvgb1/wp-go/internal/cache"
|
||||
"github/fthvgb1/wp-go/internal/config"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/mail"
|
||||
"github/fthvgb1/wp-go/internal/wpconfig"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"github/fthvgb1/wp-go/mail"
|
||||
"io"
|
||||
"net/http"
|
||||
"net/url"
|
||||
|
|
|
@ -6,10 +6,10 @@ import (
|
|||
"github.com/gin-gonic/gin"
|
||||
"github/fthvgb1/wp-go/helper"
|
||||
"github/fthvgb1/wp-go/internal/cache"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/models"
|
||||
"github/fthvgb1/wp-go/internal/plugins"
|
||||
"github/fthvgb1/wp-go/internal/wpconfig"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"math/rand"
|
||||
"net/http"
|
||||
"net/url"
|
||||
|
|
|
@ -6,10 +6,10 @@ import (
|
|||
"github/fthvgb1/wp-go/cache"
|
||||
"github/fthvgb1/wp-go/helper"
|
||||
cache2 "github/fthvgb1/wp-go/internal/cache"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/models"
|
||||
"github/fthvgb1/wp-go/internal/plugins"
|
||||
"github/fthvgb1/wp-go/internal/wpconfig"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"github/fthvgb1/wp-go/plugin/digest"
|
||||
"github/fthvgb1/wp-go/rss2"
|
||||
"net/http"
|
||||
|
|
2
internal/cache/cache.go
vendored
2
internal/cache/cache.go
vendored
|
@ -5,8 +5,8 @@ import (
|
|||
"github/fthvgb1/wp-go/cache"
|
||||
"github/fthvgb1/wp-go/internal/config"
|
||||
dao "github/fthvgb1/wp-go/internal/dao"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/models"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
|
2
internal/cache/comments.go
vendored
2
internal/cache/comments.go
vendored
|
@ -2,8 +2,8 @@ package cache
|
|||
|
||||
import (
|
||||
"context"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/models"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
|
2
internal/cache/posts.go
vendored
2
internal/cache/posts.go
vendored
|
@ -5,8 +5,8 @@ import (
|
|||
"fmt"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github/fthvgb1/wp-go/helper"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/models"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
|
2
internal/cache/users.go
vendored
2
internal/cache/users.go
vendored
|
@ -2,8 +2,8 @@ package cache
|
|||
|
||||
import (
|
||||
"context"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/models"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"github/fthvgb1/wp-go/model"
|
||||
"time"
|
||||
)
|
||||
|
|
|
@ -4,8 +4,8 @@ import (
|
|||
"context"
|
||||
"github.com/leeqvip/gophp"
|
||||
"github/fthvgb1/wp-go/helper"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/models"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"github/fthvgb1/wp-go/model"
|
||||
"strconv"
|
||||
)
|
||||
|
|
|
@ -5,9 +5,9 @@ import (
|
|||
"fmt"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github/fthvgb1/wp-go/internal/config"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/mail"
|
||||
"github/fthvgb1/wp-go/internal/wpconfig"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"github/fthvgb1/wp-go/mail"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
|
|
4
main.go
4
main.go
|
@ -7,11 +7,11 @@ import (
|
|||
"github/fthvgb1/wp-go/internal/cache"
|
||||
"github/fthvgb1/wp-go/internal/config"
|
||||
"github/fthvgb1/wp-go/internal/db"
|
||||
"github/fthvgb1/wp-go/internal/logs"
|
||||
"github/fthvgb1/wp-go/internal/mail"
|
||||
"github/fthvgb1/wp-go/internal/plugins"
|
||||
"github/fthvgb1/wp-go/internal/route"
|
||||
"github/fthvgb1/wp-go/internal/wpconfig"
|
||||
"github/fthvgb1/wp-go/logs"
|
||||
"github/fthvgb1/wp-go/mail"
|
||||
"github/fthvgb1/wp-go/model"
|
||||
"log"
|
||||
"math/rand"
|
||||
|
|
Loading…
Reference in New Issue
Block a user