aiweek-reconstruction/file/conf.go

9 lines
163 B
Go
Raw Normal View History

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