mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
10 lines
159 B
Go
10 lines
159 B
Go
package static
|
|
|
|
import "embed"
|
|
|
|
// 使用1.16特性编译阶段将静态资源文件打包进编译好的程序
|
|
var (
|
|
//go:embed static/**
|
|
Static embed.FS
|
|
)
|