From f406c7efd17f18c766e50485bda0e96e3bb32931 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Tue, 7 Sep 2021 13:34:05 +0200 Subject: [PATCH] lint: comment exported function --- graph/pkg/service/v0/drives.go | 1 + 1 file changed, 1 insertion(+) diff --git a/graph/pkg/service/v0/drives.go b/graph/pkg/service/v0/drives.go index 3824f73c5..1097f8c12 100644 --- a/graph/pkg/service/v0/drives.go +++ b/graph/pkg/service/v0/drives.go @@ -134,6 +134,7 @@ func (g Graph) GetRootDriveChildren(w http.ResponseWriter, r *http.Request) { render.JSON(w, r, &listResponse{Value: files}) } +// CreateDrive creates a storage drive (space). func (g Graph) CreateDrive(w http.ResponseWriter, r *http.Request) { us, ok := ctxpkg.ContextGetUser(r.Context()) if !ok {