diff options
Diffstat (limited to 'pkg/handler/git.go')
-rw-r--r-- | pkg/handler/git.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pkg/handler/git.go b/pkg/handler/git.go new file mode 100644 index 0000000..5b09121 --- /dev/null +++ b/pkg/handler/git.go @@ -0,0 +1,21 @@ +package handler + +import ( + "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) { + gitList := &templates.GitListPage{g.gitService.ListRepositories()} + templates.WritePageTemplate(w, gitList) +} |