mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 20:00:26 +08:00
15 lines
301 B
Go
15 lines
301 B
Go
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package files
|
|
|
|
import "github.com/iwind/TeaGo"
|
|
|
|
func init() {
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
server.
|
|
Prefix("/files").
|
|
Get("/file", new(FileAction)).
|
|
EndAll()
|
|
})
|
|
}
|