refactor: minor changes and fixes

This commit is contained in:
David Allen 2025-08-30 00:23:53 -06:00
parent b791b84890
commit dc8a9cff20
Signed by: towk
GPG key ID: 0430CDBE22619155
5 changed files with 11 additions and 25 deletions

View file

@ -2,7 +2,6 @@ package service
import (
"encoding/json"
"fmt"
"io"
"net/http"
"os"
@ -35,7 +34,6 @@ func (s *Service) ListPlugins() http.HandlerFunc {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
fmt.Printf("%v", plugins)
w.Write(body)
}