You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package mister
import "embed"
/*go embed 只能读取到它所在.go文件所属的目录及其子目录的内容, 无法读取上级目录*/
//go:embed index.html
var Html [ ] byte
//go:embed aws/ws.html
var WsHtml [ ] byte
//go:embed screen/web/meetingview.html
var MeetingviewHtml [ ] byte
//go:embed screen/web/topicview.html
var Topicview [ ] byte
//go:embed screen/web/viewer.html
var Screenviewer [ ] byte
//go:embed screen/build/fabric.js
var FabricJs [ ] byte
//go:embed screen/build/moment.js
var Moment [ ] byte
//go:embed screen/build/html2canvas.min.js
var Html2canvas [ ] byte
// for vue
/*
//go:embed css fonts images img js
var Static embed.FS
*/
// for react
//go:embed static *.js
var Static embed . FS