修复 改名的问题

This commit is contained in:
huangsimin@fusen.cn 2023-11-30 11:05:42 +08:00
parent 57fd3eb516
commit 7632831762
5 changed files with 27 additions and 14 deletions

View File

@ -11,6 +11,8 @@ git submodule add https://gitee.com/fusenpack/proto
go run proto/goutils/proto_build/main.go go run proto/goutils/proto_build/main.go
或者 或者
在proto/goutils/proto_build/main_test.go执行测试 TestMain 在proto/goutils/proto_build/main_test.go执行测试 TestMain
./update_fspkg_master.sh # 执行更新最新的包
``` ```
#### 软件架构 #### 软件架构

View File

@ -190,12 +190,12 @@ func CheckGomodBasicPackage() {
if !regexp.MustCompile(`fusen-basic `).Match(data) { if !regexp.MustCompile(`fusen-basic `).Match(data) {
log.Println(isRewrite, len(content)) log.Println(isRewrite, len(content))
isRewrite = true isRewrite = true
content += "\n\nreplace fusen-basic v0.0.0 => gitee.com/fusenpack/fusen-basic v0.0.1" content += "\n\nreplace fusen-basic v0.0.0 => gitlab.fusenpack.com/backend/basic v0.0.1"
} }
if !regexp.MustCompile(`fusen-model `).Match(data) { if !regexp.MustCompile(`fusen-model `).Match(data) {
isRewrite = true isRewrite = true
content += "\n\nreplace fusen-model v0.0.0 => gitee.com/fusenpack/fusen-model v0.0.1" content += "\n\nreplace fusen-model v0.0.0 => gitlab.fusenpack.com/backend/model v0.0.1"
} }
if isRewrite { if isRewrite {

View File

@ -1,7 +1,7 @@
syntax = "proto3"; //使v3版本 syntax = "proto3"; //使v3版本
package auth; package auth;
option go_package = "gitee.com/fusenpack/fusen-auth;service"; option go_package = "gitlab.fusenpack.com/backend/auth;service";
// google/api/annotations.proto // google/api/annotations.proto
import "google/api/annotations.proto"; import "google/api/annotations.proto";

View File

@ -1,7 +1,7 @@
syntax = "proto3"; //使v3版本 syntax = "proto3"; //使v3版本
package fsservice; package fsservice;
option go_package = "gitee.com/fusenpack/fusen-service;service"; option go_package = "gitlab.fusenpack.com/backend/service;service";
// google/api/annotations.proto // google/api/annotations.proto
import "google/api/annotations.proto"; import "google/api/annotations.proto";
@ -9,15 +9,6 @@ import "service/basic.proto";
import "google/protobuf/struct.proto"; import "google/protobuf/struct.proto";
import "google/protobuf/any.proto"; import "google/protobuf/any.proto";
//
service notify {
rpc Hello(basic.Request) returns (basic.Response) {
option (google.api.http) = {
post: "/api/notify/hello"
body: "*"
};
}
}
// //
service info { service info {

20
service/notify.proto Normal file
View File

@ -0,0 +1,20 @@
syntax = "proto3"; //使v3版本
package notify;
option go_package = "gitlab.fusenpack.com/backend/notify;service";
// google/api/annotations.proto
import "google/api/annotations.proto";
import "service/basic.proto";
import "google/protobuf/struct.proto";
import "google/protobuf/any.proto";
//
service notify {
rpc Email(basic.Request) returns (basic.Response) {
option (google.api.http) = {
post: "/api/notify/email"
body: "*"
};
}
}