-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgdi_gen.go
More file actions
executable file
·26 lines (23 loc) · 956 Bytes
/
Copy pathgdi_gen.go
File metadata and controls
executable file
·26 lines (23 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package main
/*
重要说明:本文件由gdi自动生成,请勿手动修改,当被注册的结构体发生变化编译出错时,请删除本文件或清除所有文件内容,只需要保留本包声明即可。
Important note: This file is automatically generated by gdi, do not modify it manually.
If the registered structure changes and the compilation fails, please delete this file or clear all the contents of the file.
Only the package declaration is required.(Note:
In the case of no generated code, the first run of the program will report an error, can not find the package declaration,
need to do a secondary compilation)
*/
import (
"embed"
p1 "gdi_aop/controller"
p2 "gdi_aop/dto"
"github.com/sjqzhang/gdi"
)
//go:embed controller dto middleware
var gdiEmbedFiles embed.FS
func init() {
gdi.SetEmbedFs(&gdiEmbedFiles)
_ = gdi.GDIPool{}
gdi.PlaceHolder((*p1.HelloController)(nil))
gdi.PlaceHolder((*p2.HelloRequest)(nil))
}