From 62246e9c23b2d4e8034f0e6a349b762f9c1709b6 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Wed, 30 Dec 2020 12:52:08 -0500 Subject: [PATCH] API Endpoints for Verifications and Pending. --- site-api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-api.go b/site-api.go index f86b4f3..0fe5606 100644 --- a/site-api.go +++ b/site-api.go @@ -151,7 +151,7 @@ func getVerifications(w http.ResponseWriter, r *http.Request) { return } var files []string - root := "./verifications" + root := "./verifications/" err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error { files = append(files, path) return nil