diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-05-27 22:36:50 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-05-27 22:42:16 +0200 |
commit | 2dd4cf35aab8324608a83d337459fd8354521b92 (patch) | |
tree | b65ecc803260bc268332fb2fbce83ab5dd209dbc /pkg/handler/git.go | |
parent | 60e8e751c76d949a28eefe0c5462e0cf17337217 (diff) | |
download | cerrado-2dd4cf35aab8324608a83d337459fd8354521b92.tar.gz cerrado-2dd4cf35aab8324608a83d337459fd8354521b92.tar.bz2 cerrado-2dd4cf35aab8324608a83d337459fd8354521b92.zip |
feat: Wraps handler into its own package
Although this creates more complex folder structure will allow in the
feature for a easier testing of those given handlers.
Diffstat (limited to 'pkg/handler/git.go')
-rw-r--r-- | pkg/handler/git.go | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/pkg/handler/git.go b/pkg/handler/git.go deleted file mode 100644 index 1ed2c49..0000000 --- a/pkg/handler/git.go +++ /dev/null @@ -1,28 +0,0 @@ -package handler - -import ( - "log/slog" - "net/http" - - "git.gabrielgio.me/cerrado/pkg/service" - "git.gabrielgio.me/cerrado/templates" -) - -type GitHandler struct { - gitService *service.GitService -} - -func NewGitHandler(gitService *service.GitService) *GitHandler { - return &GitHandler{gitService} -} - -func (g *GitHandler) List(w http.ResponseWriter, _ *http.Request) { - repos, err := g.gitService.ListRepositories() - if err != nil { - slog.Error("Error listing repo", "error", err) - return - } - - gitList := &templates.GitListPage{repos} - templates.WritePageTemplate(w, gitList) -} |