From ae89b402f63a8955d6d6415a56cee737bd0be233 Mon Sep 17 00:00:00 2001 From: Archerx Date: Wed, 25 Nov 2020 21:23:26 +0800 Subject: [PATCH] fix: statik data needs to be initialized (#640) Co-authored-by: xuc2 --- bootstrap/static.go | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrap/static.go b/bootstrap/static.go index 7b8a987..09e393d 100644 --- a/bootstrap/static.go +++ b/bootstrap/static.go @@ -9,6 +9,7 @@ import ( "github.com/cloudreve/Cloudreve/v3/pkg/conf" "github.com/cloudreve/Cloudreve/v3/pkg/util" + _ "github.com/cloudreve/Cloudreve/v3/statik" "github.com/gin-contrib/static" "github.com/rakyll/statik/fs" )