Discover books, shows, and movies at your level. Track your progress by filling your Shelf with what you find, and share with other language learners. *No dusting required. shlf.space
at master 15 lines 260 B view raw
1package server 2 3import ( 4 "net/http" 5 6 "shlf.space/internal/views/index" 7) 8 9func (s *Server) Index(w http.ResponseWriter, r *http.Request) { 10 user := s.oauth.GetAccountUser(r) 11 12 index.IndexPage(index.IndexPageParams{ 13 User: user, 14 }).Render(r.Context(), w) 15}