mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
12 lines
125 B
Go
12 lines
125 B
Go
package assets
|
|
|
|
import "embed"
|
|
|
|
var (
|
|
//go:embed bootstrap
|
|
Bootstrap embed.FS
|
|
|
|
//go:embed templates
|
|
Templates embed.FS
|
|
)
|