Initial commit
This commit is contained in:
commit
ec8ba40cf0
100 changed files with 6883 additions and 0 deletions
15
internal/assets/files.go
Normal file
15
internal/assets/files.go
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package assets
|
||||
|
||||
import (
|
||||
"embed"
|
||||
"io/fs"
|
||||
)
|
||||
|
||||
//go:embed static
|
||||
var _publicFS embed.FS
|
||||
|
||||
//go:embed templates
|
||||
var _templateFS embed.FS
|
||||
|
||||
var PublicFS, _ = fs.Sub(_publicFS, "static")
|
||||
var TemplateFS, _ = fs.Sub(_templateFS, "templates")
|
||||
Loading…
Add table
Add a link
Reference in a new issue