mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-16 06:50:26 +00:00
13 lines
144 B
Go
13 lines
144 B
Go
package views
|
|
|
|
import (
|
|
"embed"
|
|
"github.com/bouncepaw/mycorrhiza/viewutil"
|
|
)
|
|
|
|
var (
|
|
//go:embed *.html
|
|
fs embed.FS
|
|
Base = viewutil.Base
|
|
)
|