mirror of
https://github.com/TecharoHQ/anubis.git
synced 2025-12-30 16:29:37 -06:00
* fix(data): add services folder to embedded filesystem Also includes a regression test to ensure this does not happen again. Assisted-By: GLM 4.6 via Claude Code * docs: update CHANGELOG Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net>
9 lines
165 B
Go
9 lines
165 B
Go
package data
|
|
|
|
import "embed"
|
|
|
|
var (
|
|
//go:embed botPolicies.yaml all:apps all:bots all:clients all:common all:crawlers all:meta all:services
|
|
BotPolicies embed.FS
|
|
)
|