aiweek-reconstruction/file/conf.go

9 lines
167 B
Go
Raw Normal View History

2024-05-18 01:46:35 +08:00
package file
import "aiweek/tools"
func GetFileServerUrl() string {
2024-05-19 00:31:20 +08:00
server := tools.NewServerConfObj().ReadYaml("/conf/fileserver.yaml").Server[0]
2024-05-18 01:46:35 +08:00
return server
}