mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-28 04:05:21 +08:00
15 lines
206 B
Go
15 lines
206 B
Go
package plg_override_actiondelete
|
|
|
|
import (
|
|
"embed"
|
|
|
|
. "github.com/mickael-kerjean/filestash/server/common"
|
|
)
|
|
|
|
//go:embed assets/*
|
|
var STATIC embed.FS
|
|
|
|
func init() {
|
|
Hooks.Register.StaticPatch(STATIC)
|
|
}
|