From 5d5bc2fa6e35afc66ed3593ea46f324a8dce93d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=96=8C?= <259278618@qq.com> Date: Tue, 24 Feb 2026 15:42:36 +0800 Subject: [PATCH] .gitignore --- db/meilisearch/meilisearch.go | 2 +- http/http.go | 8 ++++---- log/controller/log_controller.go | 4 ++-- log/dao/log_dao.go | 10 +++++----- log/model/dto/log_dto.go | 2 +- log/model/entity/log.go | 2 +- log/service/log_service.go | 10 +++++----- middleware/circuit_breaker.go | 2 +- middleware/module_tenant_check.go | 8 ++++---- middleware/rate_limiter.go | 4 ++-- minio/minio.go | 2 +- mongo/connection.go | 2 +- mongo/mongo.go | 10 +++++----- rag/eino/base_task.go | 2 +- ragflow/document.go | 2 +- ragflow/worker_pool.go | 2 +- sql/sql.go | 4 ++-- swagger/swagger.go | 4 ++-- utils/utils.go | 2 +- 19 files changed, 41 insertions(+), 41 deletions(-) diff --git a/db/meilisearch/meilisearch.go b/db/meilisearch/meilisearch.go index 68e42b3..e4b561f 100644 --- a/db/meilisearch/meilisearch.go +++ b/db/meilisearch/meilisearch.go @@ -10,7 +10,7 @@ import ( "fmt" "time" - "gitee.com/red-future---jilin-g/common/utils" + "gitea.com/red-future/common/utils" "github.com/gogf/gf/v2/container/gvar" "github.com/gogf/gf/v2/errors/gerror" "github.com/gogf/gf/v2/frame/g" diff --git a/http/http.go b/http/http.go index 4555b47..ffcb1fe 100644 --- a/http/http.go +++ b/http/http.go @@ -9,10 +9,10 @@ import ( "regexp" "strings" - _ "gitee.com/red-future---jilin-g/common/consul" - "gitee.com/red-future---jilin-g/common/jaeger" - "gitee.com/red-future---jilin-g/common/log/controller" - "gitee.com/red-future---jilin-g/common/utils" + _ "gitea.com/red-future/common/consul" + "gitea.com/red-future/common/jaeger" + "gitea.com/red-future/common/log/controller" + "gitea.com/red-future/common/utils" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/net/gclient" "github.com/gogf/gf/v2/net/ghttp" diff --git a/log/controller/log_controller.go b/log/controller/log_controller.go index 3485423..a222b07 100644 --- a/log/controller/log_controller.go +++ b/log/controller/log_controller.go @@ -3,8 +3,8 @@ package controller import ( "context" - "gitee.com/red-future---jilin-g/common/log/model/dto" - "gitee.com/red-future---jilin-g/common/log/service" + "gitea.com/red-future/common/log/model/dto" + "gitea.com/red-future/common/log/service" ) type operationLog struct{} diff --git a/log/dao/log_dao.go b/log/dao/log_dao.go index 7f435de..b185913 100644 --- a/log/dao/log_dao.go +++ b/log/dao/log_dao.go @@ -2,14 +2,14 @@ package dao import ( "context" - "gitee.com/red-future---jilin-g/common/beans" + "gitea.com/red-future/common/beans" "strings" "time" - "gitee.com/red-future---jilin-g/common/log/consts" - "gitee.com/red-future---jilin-g/common/log/model/dto" - "gitee.com/red-future---jilin-g/common/log/model/entity" - "gitee.com/red-future---jilin-g/common/mongo" + "gitea.com/red-future/common/log/consts" + "gitea.com/red-future/common/log/model/dto" + "gitea.com/red-future/common/log/model/entity" + "gitea.com/red-future/common/mongo" "go.mongodb.org/mongo-driver/v2/bson" ) diff --git a/log/model/dto/log_dto.go b/log/model/dto/log_dto.go index ba12fda..ddbc167 100644 --- a/log/model/dto/log_dto.go +++ b/log/model/dto/log_dto.go @@ -1,7 +1,7 @@ package dto import ( - "gitee.com/red-future---jilin-g/common/beans" + "gitea.com/red-future/common/beans" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" ) diff --git a/log/model/entity/log.go b/log/model/entity/log.go index 463926f..40fd54f 100644 --- a/log/model/entity/log.go +++ b/log/model/entity/log.go @@ -1,7 +1,7 @@ package entity import ( - "gitee.com/red-future---jilin-g/common/beans" + "gitea.com/red-future/common/beans" ) // OperationLog 操作日志实体 - 用于记录数据增删改操作行为 diff --git a/log/service/log_service.go b/log/service/log_service.go index c16e8cc..3e15c75 100644 --- a/log/service/log_service.go +++ b/log/service/log_service.go @@ -2,11 +2,11 @@ package service import ( "context" - "gitee.com/red-future---jilin-g/common/beans" - "gitee.com/red-future---jilin-g/common/log/dao" - "gitee.com/red-future---jilin-g/common/log/model/dto" - logEntity "gitee.com/red-future---jilin-g/common/log/model/entity" - "gitee.com/red-future---jilin-g/common/utils" + "gitea.com/red-future/common/beans" + "gitea.com/red-future/common/log/dao" + "gitea.com/red-future/common/log/model/dto" + logEntity "gitea.com/red-future/common/log/model/entity" + "gitea.com/red-future/common/utils" "github.com/gogf/gf/v2/util/gconv" ) diff --git a/middleware/circuit_breaker.go b/middleware/circuit_breaker.go index 82af81a..5b02a5b 100644 --- a/middleware/circuit_breaker.go +++ b/middleware/circuit_breaker.go @@ -9,7 +9,7 @@ import ( "sync/atomic" "time" - "gitee.com/red-future---jilin-g/common/redis" + "gitea.com/red-future/common/redis" "github.com/alibaba/sentinel-golang/api" "github.com/alibaba/sentinel-golang/core/circuitbreaker" "github.com/gogf/gf/v2/frame/g" diff --git a/middleware/module_tenant_check.go b/middleware/module_tenant_check.go index 2ba3518..a88a7cb 100644 --- a/middleware/module_tenant_check.go +++ b/middleware/module_tenant_check.go @@ -4,10 +4,10 @@ import ( "context" "encoding/json" "fmt" - "gitee.com/red-future---jilin-g/common/beans" - "gitee.com/red-future---jilin-g/common/message" - "gitee.com/red-future---jilin-g/common/redis" - "gitee.com/red-future---jilin-g/common/utils" + "gitea.com/red-future/common/beans" + "gitea.com/red-future/common/message" + "gitea.com/red-future/common/redis" + "gitea.com/red-future/common/utils" "github.com/gogf/gf/v2/database/gredis" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/net/ghttp" diff --git a/middleware/rate_limiter.go b/middleware/rate_limiter.go index 70dc61e..71dd53a 100644 --- a/middleware/rate_limiter.go +++ b/middleware/rate_limiter.go @@ -4,8 +4,8 @@ import ( "fmt" "strings" - "gitee.com/red-future---jilin-g/common/redis" - "gitee.com/red-future---jilin-g/common/utils" + "gitea.com/red-future/common/redis" + "gitea.com/red-future/common/utils" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/net/ghttp" "github.com/gogf/gf/v2/util/gconv" diff --git a/minio/minio.go b/minio/minio.go index 030d87f..4c99dcb 100644 --- a/minio/minio.go +++ b/minio/minio.go @@ -3,7 +3,7 @@ package minio import ( "context" "fmt" - "gitee.com/red-future---jilin-g/common/utils" + "gitea.com/red-future/common/utils" "github.com/gogf/gf/v2/os/glog" "github.com/gogf/gf/v2/util/gconv" "net/http" diff --git a/mongo/connection.go b/mongo/connection.go index b58727b..10f3fc9 100644 --- a/mongo/connection.go +++ b/mongo/connection.go @@ -15,7 +15,7 @@ import ( "syscall" "time" - "gitee.com/red-future---jilin-g/common/log/consts" + "gitea.com/red-future/common/log/consts" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/glog" diff --git a/mongo/mongo.go b/mongo/mongo.go index a7f30f8..56f7694 100644 --- a/mongo/mongo.go +++ b/mongo/mongo.go @@ -11,13 +11,13 @@ import ( "fmt" "time" - "gitee.com/red-future---jilin-g/common/log/consts" + "gitea.com/red-future/common/log/consts" "go.mongodb.org/mongo-driver/v2/event" - "gitee.com/red-future---jilin-g/common/beans" - "gitee.com/red-future---jilin-g/common/log/model/entity" - "gitee.com/red-future---jilin-g/common/redis" - "gitee.com/red-future---jilin-g/common/utils" + "gitea.com/red-future/common/beans" + "gitea.com/red-future/common/log/model/entity" + "gitea.com/red-future/common/redis" + "gitea.com/red-future/common/utils" "github.com/gogf/gf/v2/container/gvar" "github.com/gogf/gf/v2/errors/gerror" "github.com/gogf/gf/v2/frame/g" diff --git a/rag/eino/base_task.go b/rag/eino/base_task.go index 9de26ad..b883341 100644 --- a/rag/eino/base_task.go +++ b/rag/eino/base_task.go @@ -3,7 +3,7 @@ package eino import ( "time" - "gitee.com/red-future---jilin-g/common/beans" + "gitea.com/red-future/common/beans" ) // BaseTask 任务基类 - MongoDB版本 diff --git a/ragflow/document.go b/ragflow/document.go index 4158ea1..b2c9002 100644 --- a/ragflow/document.go +++ b/ragflow/document.go @@ -9,7 +9,7 @@ import ( "mime/multipart" "strings" - commonHttp "gitee.com/red-future---jilin-g/common/http" + commonHttp "gitea.com/red-future/common/http" "github.com/gogf/gf/v2/errors/gerror" "github.com/gogf/gf/v2/frame/g" ) diff --git a/ragflow/worker_pool.go b/ragflow/worker_pool.go index 608dd81..91eae0c 100644 --- a/ragflow/worker_pool.go +++ b/ragflow/worker_pool.go @@ -7,7 +7,7 @@ import ( "sync" "time" - "gitee.com/red-future---jilin-g/common/redis" + "gitea.com/red-future/common/redis" "github.com/gogf/gf/v2/os/glog" "github.com/gogf/gf/v2/os/grpool" ) diff --git a/sql/sql.go b/sql/sql.go index d792dd6..b8392a6 100644 --- a/sql/sql.go +++ b/sql/sql.go @@ -8,8 +8,8 @@ package sql import ( "context" - "gitee.com/red-future---jilin-g/common/beans" - "gitee.com/red-future---jilin-g/common/utils" + "gitea.com/red-future/common/beans" + "gitea.com/red-future/common/utils" "github.com/gogf/gf/v2/database/gdb" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" diff --git a/swagger/swagger.go b/swagger/swagger.go index 40157da..76585aa 100644 --- a/swagger/swagger.go +++ b/swagger/swagger.go @@ -2,8 +2,8 @@ package swagger import ( "fmt" - "gitee.com/red-future---jilin-g/common/consul" - "gitee.com/red-future---jilin-g/common/http" + "gitea.com/red-future/common/consul" + "gitea.com/red-future/common/http" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/net/ghttp" "github.com/gogf/gf/v2/util/gconv" diff --git a/utils/utils.go b/utils/utils.go index 0ae38d8..2eed0ac 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -12,7 +12,7 @@ import ( "sync/atomic" "time" - "gitee.com/red-future---jilin-g/common/beans" + "gitea.com/red-future/common/beans" "github.com/gogf/gf/v2/database/gredis" "github.com/gogf/gf/v2/errors/gcode" "github.com/gogf/gf/v2/errors/gerror"