From 775c0c1040e6a6622fec39d49b354bfa194a6998 Mon Sep 17 00:00:00 2001 From: tjpcc Date: Sat, 30 Sep 2023 20:08:33 -0600 Subject: file serving refactor * do away with fs.FS usage in gemini, like the previous refactor in gopher * remove spartan code in contrib * standardize fsroot/urlroot string arguments to file serving handlers --- contrib/fs/stat.go | 8 -------- 1 file changed, 8 deletions(-) (limited to 'contrib/fs/stat.go') diff --git a/contrib/fs/stat.go b/contrib/fs/stat.go index 4dd65d8..78b198f 100644 --- a/contrib/fs/stat.go +++ b/contrib/fs/stat.go @@ -18,11 +18,3 @@ func isNotFound(err error) bool { return false } - -func fileIsDir(file fs.File) (bool, error) { - info, err := file.Stat() - if err != nil { - return false, err - } - return info.IsDir(), nil -} -- cgit v1.2.3