mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-09 08:40:26 +08:00
20 lines
342 B
Go
20 lines
342 B
Go
package ui
|
|
|
|
import (
|
|
"github.com/iwind/TeaGo"
|
|
"github.com/iwind/TeaGo/actions"
|
|
)
|
|
|
|
func init() {
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
server.
|
|
Prefix("/ui").
|
|
Get("/download", new(DownloadAction)).
|
|
|
|
// 以下的需要压缩
|
|
Helper(new(actions.Gzip)).
|
|
Get("/components.js", new(ComponentsAction)).
|
|
EndAll()
|
|
})
|
|
}
|