Add default value

This commit is contained in:
Bowens
2023-03-14 10:19:54 +08:00
parent ed5a0625a7
commit 2186b285b3

View File

@@ -25,7 +25,7 @@ func init() {
"local": map[string]any{
"driver": "local",
"root": "storage/app",
"url": config.Env("APP_URL").(string) + "/storage",
"url": config.Env("APP_URL", "").(string) + "/storage",
},
"s3": map[string]any{
"driver": "s3",