updated imports
This commit is contained in:
parent
eeb26c5911
commit
e1b4439830
|
@ -2,9 +2,9 @@ package apis
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
"gitlink.org.cn/JointCloud/pcm-openi/common"
|
||||||
|
"gitlink.org.cn/JointCloud/pcm-openi/model"
|
||||||
"net/http"
|
"net/http"
|
||||||
"pcm-openi/common"
|
|
||||||
"pcm-openi/model"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetImageRecommended(ctx *gin.Context) {
|
func GetImageRecommended(ctx *gin.Context) {
|
||||||
|
|
|
@ -2,9 +2,9 @@ package apis
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
"gitlink.org.cn/JointCloud/pcm-openi/common"
|
||||||
|
"gitlink.org.cn/JointCloud/pcm-openi/model"
|
||||||
"net/http"
|
"net/http"
|
||||||
"pcm-openi/common"
|
|
||||||
"pcm-openi/model"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetRepos(ctx *gin.Context) {
|
func GetRepos(ctx *gin.Context) {
|
||||||
|
|
|
@ -2,9 +2,9 @@ package apis
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
"gitlink.org.cn/JointCloud/pcm-openi/common"
|
||||||
|
"gitlink.org.cn/JointCloud/pcm-openi/model"
|
||||||
"net/http"
|
"net/http"
|
||||||
"pcm-openi/common"
|
|
||||||
"pcm-openi/model"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetTaskCreationRequired(ctx *gin.Context) {
|
func GetTaskCreationRequired(ctx *gin.Context) {
|
||||||
|
|
|
@ -2,7 +2,7 @@ package apis
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"pcm-openi/model"
|
"gitlink.org.cn/JointCloud/pcm-openi/model"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TestApi struct {
|
type TestApi struct {
|
||||||
|
|
|
@ -2,8 +2,8 @@ package apis
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"pcm-openi/common"
|
"gitlink.org.cn/JointCloud/pcm-openi/common"
|
||||||
"pcm-openi/model"
|
"gitlink.org.cn/JointCloud/pcm-openi/model"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetUserInfo(ctx *gin.Context) {
|
func GetUserInfo(ctx *gin.Context) {
|
||||||
|
|
|
@ -2,8 +2,8 @@ package err
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"gitlink.org.cn/JointCloud/pcm-openi/model"
|
||||||
"net/http"
|
"net/http"
|
||||||
"pcm-openi/model"
|
|
||||||
"strings"
|
"strings"
|
||||||
"unicode"
|
"unicode"
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@ package router
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"pcm-openi/apis"
|
"gitlink.org.cn/JointCloud/pcm-openi/apis"
|
||||||
"pcm-openi/config"
|
"gitlink.org.cn/JointCloud/pcm-openi/config"
|
||||||
"pcm-openi/err"
|
"gitlink.org.cn/JointCloud/pcm-openi/err"
|
||||||
"regexp"
|
"regexp"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue