From c53a1998c589a544b25d53f6e6fdf0f24a4df25b Mon Sep 17 00:00:00 2001 From: Joe Chen Date: Thu, 2 Feb 2023 21:25:25 +0800 Subject: all: replace `interface{}` with `any` (#7330) Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> --- internal/route/admin/repos.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/route/admin/repos.go') diff --git a/internal/route/admin/repos.go b/internal/route/admin/repos.go index c2d2509c..5ae8f749 100644 --- a/internal/route/admin/repos.go +++ b/internal/route/admin/repos.go @@ -81,7 +81,7 @@ func DeleteRepo(c *context.Context) { log.Trace("Repository deleted: %s/%s", repo.MustOwner().Name, repo.Name) c.Flash.Success(c.Tr("repo.settings.deletion_success")) - c.JSONSuccess(map[string]interface{}{ + c.JSONSuccess(map[string]any{ "redirect": conf.Server.Subpath + "/admin/repos?page=" + c.Query("page"), }) } -- cgit v1.2.3