Wyle.Gong-巩文昕 0b29e4e856 ui
2025-04-23 11:22:46 +08:00

26 lines
389 B
Go

//
// Copyright (C) 2025 veypi <i@veypi.com>
// 2025-03-04 14:03:56
// Distributed under terms of the MIT license.
//
package vyesui
import (
"embed"
"github.com/veypi/OneBD/rest"
"github.com/veypi/OneBD/rest/middlewares/vyes"
)
var Router = rest.NewRouter()
//go:embed ui/*
var uifs embed.FS
//go:embed ui/root.html
var rootFile []byte
func init() {
vyes.WrapUI(Router, uifs)
}