updated imports

This commit is contained in:
tzwang 2024-12-05 22:06:15 +08:00
parent eeb26c5911
commit e1b4439830
7 changed files with 13 additions and 13 deletions

View File

@ -2,9 +2,9 @@ package apis
import (
"github.com/gin-gonic/gin"
"gitlink.org.cn/JointCloud/pcm-openi/common"
"gitlink.org.cn/JointCloud/pcm-openi/model"
"net/http"
"pcm-openi/common"
"pcm-openi/model"
)
func GetImageRecommended(ctx *gin.Context) {

View File

@ -2,9 +2,9 @@ package apis
import (
"github.com/gin-gonic/gin"
"gitlink.org.cn/JointCloud/pcm-openi/common"
"gitlink.org.cn/JointCloud/pcm-openi/model"
"net/http"
"pcm-openi/common"
"pcm-openi/model"
)
func GetRepos(ctx *gin.Context) {

View File

@ -2,9 +2,9 @@ package apis
import (
"github.com/gin-gonic/gin"
"gitlink.org.cn/JointCloud/pcm-openi/common"
"gitlink.org.cn/JointCloud/pcm-openi/model"
"net/http"
"pcm-openi/common"
"pcm-openi/model"
)
func GetTaskCreationRequired(ctx *gin.Context) {

View File

@ -2,7 +2,7 @@ package apis
import (
"github.com/gin-gonic/gin"
"pcm-openi/model"
"gitlink.org.cn/JointCloud/pcm-openi/model"
)
type TestApi struct {

View File

@ -2,8 +2,8 @@ package apis
import (
"github.com/gin-gonic/gin"
"pcm-openi/common"
"pcm-openi/model"
"gitlink.org.cn/JointCloud/pcm-openi/common"
"gitlink.org.cn/JointCloud/pcm-openi/model"
)
func GetUserInfo(ctx *gin.Context) {

View File

@ -2,8 +2,8 @@ package err
import (
"fmt"
"gitlink.org.cn/JointCloud/pcm-openi/model"
"net/http"
"pcm-openi/model"
"strings"
"unicode"

View File

@ -3,9 +3,9 @@ package router
import (
"fmt"
"github.com/gin-gonic/gin"
"pcm-openi/apis"
"pcm-openi/config"
"pcm-openi/err"
"gitlink.org.cn/JointCloud/pcm-openi/apis"
"gitlink.org.cn/JointCloud/pcm-openi/config"
"gitlink.org.cn/JointCloud/pcm-openi/err"
"regexp"
"time"
)